-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
declarations of functions with several integer arguments are suboptimal #18
Comments
Perfect! You are completely right. I fully agree with this approach. I am just not sure what is the best way to implement it. |
Done! This approach was used in an old Julia version to make the precompilation more effective. The current version is way better handling those cases and I simplified a lot. Can you please test before I tag a new version? |
I cannot compile
|
Oops, can you please test again? |
My app works fine again. Everything I tried works and the prototypes of the Curses functions are nicer now. |
Awesome! |
The declaration for a function like
wmove
isThis is not very convenient. For example a call like
gives "method not found" because
getbegy
isInt32
while 10 isInt64
. It would be better in similar cases to haveor
I did not make a pull request because I have not yet fully understood your automatic way to port functions.
The text was updated successfully, but these errors were encountered: