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
Copied from: https://sourceforge.net/p/cppheaderparser/bugs/65/ Reported by: https://sourceforge.net/u/phlibi/
Enum values have inserted a space between the numeric sign and the number:
h=CppHeaderParser.CppHeader('''enum { FOO = -123 }; ''', argType='string') print(h.enums)
yields:
[{'line_number': 1, 'namespace': '', 'type': int, 'typedef': False, 'values': [{'name': 'FOO', 'value': '- 123'}]}]
Note the space between '-' and '123'.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Copied from: https://sourceforge.net/p/cppheaderparser/bugs/65/
Reported by: https://sourceforge.net/u/phlibi/
Enum values have inserted a space between the numeric sign and the number:
yields:
Note the space between '-' and '123'.
The text was updated successfully, but these errors were encountered: