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
tree-sitter --version
No response
The grammar is missing support for the _Alignas() type specifier (or alignas() in C23). Documentation for it is found here: https://en.cppreference.com/w/c/language/_Alignas
_Alignas()
alignas()
I expected the alignas() type specifier to not be treated as a function.
int main(void) { _Alignas(16) int a; _Alignas(int) int b; alignas(16) int c; alignas(int) int d; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Did you check existing issues?
Tree-Sitter CLI Version, if relevant (output of
tree-sitter --version
)No response
Describe the bug
The grammar is missing support for the
_Alignas()
type specifier (oralignas()
in C23). Documentation for it is found here: https://en.cppreference.com/w/c/language/_AlignasSteps To Reproduce/Bad Parse Tree
Expected Behavior/Parse Tree
I expected the
alignas()
type specifier to not be treated as a function.Repro
The text was updated successfully, but these errors were encountered: