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 code seems to break the C syntax highlighter even though it can be valid.
struct my_struct* my_var = MY_MACRO({});
Typedeffing my_struct so that the struct keyword can be removed prevents it from breaking
my_struct
struct
my_struct* my_var = MY_MACRO({});
Omitting the braces also prevents it from breaking
struct my_struct* my_var = MY_MACRO();
The text was updated successfully, but these errors were encountered:
Can you try out #1831 and see if it fixes it.
Sorry, something went wrong.
Yup, seems to work.
No branches or pull requests
This code seems to break the C syntax highlighter even though it can be valid.
Typedeffing
my_struct
so that thestruct
keyword can be removed prevents it from breakingOmitting the braces also prevents it from breaking
The text was updated successfully, but these errors were encountered: