We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Looks like it is misinterpreted as a function-like macro
$ cat test4.h #define a 5 #define b 6 #define c (a+b) #define d c $ clang2py -k dm test4.h # -*- coding: utf-8 -*- # # TARGET arch is: [] # WORD_SIZE is: 8 # POINTER_SIZE is: 8 # LONGDOUBLE_SIZE is: 16 # import ctypes a = 5 # macro b = 6 # macro # def c(5+6): # macro # return d = # macro __all__ = \ ['a', 'b', 'd']
The text was updated successfully, but these errors were encountered:
in cursorhandler -> MACRO_DEFINITION added "print(tokens)"
['a', '5'] ['b', '6'] ['c', '(', '5', '+', '6', ')'] ['d', '']
Sorry, something went wrong.
No branches or pull requests
Looks like it is misinterpreted as a function-like macro
The text was updated successfully, but these errors were encountered: