-
Notifications
You must be signed in to change notification settings - Fork 31
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
Quite verbose d files generated #263
Comments
If there was a way to detect that a macro is an integer or string constant, then I'd be all for the change, but I can't think of any. If you don't care about macros, you can use |
I just saw pr #262 and now think about wheter an argument There is a small list of macros which I need. Beeing able to specify them would be great . |
fix atilaneves#263 single token string and integer literals are emitted as-is with this, without running through the is(typeof()) check. Since all integers and strings should be representable in D, they should be fine to be included directly after translation. still needs a test
fix atilaneves#263 single token string and integer literals are emitted as-is with this, without running through the is(typeof()) check. Since all integers and strings should be representable in D, they should be fine to be included directly after translation. still needs a test
For this dockerfile
and the file
open62541h.dpp
A 6MB file
/tmp/open62541h.d
is generated with ~ 142.000 lines. The first 6000 lines looks as expected. After that there are lines with these pattern:Are the static if / string mixin really needed, or could just instead the line
be added?
The text was updated successfully, but these errors were encountered: