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
This example:
unsigned __attribute__((const)) ctz(unsigned x) { return 0; }
expands as:
unsigned __attribute___attribute__((const)) unsigned int ctz(unsigned int x) { return 0; }
This leads to duplication of unsigned and __attribute__
unsigned
__attribute__
The text was updated successfully, but these errors were encountered:
Hello @RB37,
my apologies but I totally overlooked this issue. Thanks for reporting it. A fix is on its way.
Andreas
Sorry, something went wrong.
4d660f6
Merge pull request #367 from andreasfertig/fixIssue354
6c43692
Fixed #354: Attribute which appeared after return type was broken.
No branches or pull requests
This example:
expands as:
This leads to duplication of
unsigned
and__attribute__
The text was updated successfully, but these errors were encountered: