-
Notifications
You must be signed in to change notification settings - Fork 26
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
Add support for complex and 64bit integers #327
Conversation
Nice, also fixes #298 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fix!
I don't really understand the @convert
macro and why we need these two steps of conversion. It feels like this could be a maintenance problem long term?
Yeah it could be a maintenance problem long term; my guess is that the complexity arises from handling the variety of different expressions (depending on whether it's an enum, cenum, datatype, etc) in Lines 268 to 590 in 4626113
In the meantime, we can examine the output of that macro using macroexpand like in #326 (comment) for debugging purposes. |
Fixes #326