-
Notifications
You must be signed in to change notification settings - Fork 37
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
spurious generation of variadic args rather than implicit void ie () argument list #38
Comments
I'm using quite an old version of Clang now, but I can only get this to compile in C++ mode. DStep does not support C++. |
It's one of those strange cases where there is a pure C API documented in the headers but it is mixed in with C++. So dstep did an okay job, but got confused on those small cases. Sent from my iPad
|
I'll need to investigate how AST in libclang looks like. |
Fix #38: Spurious generation of variadic args.
converting the mathgl headers
I got:
double mgl_rnd_ (...);
but it should just be:
double mgl_rnd();
hope this is not something simple I am doing wrong. sorry, but I have not time right now to find the original header and try to replicate it.
The text was updated successfully, but these errors were encountered: