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
Defining a child struct pointer in a struct should not be treated as a struct declaration.
struct child_t { int foo; }; struct parent_t { struct child_t *child_pointer; // ^ - entity.name.struct [ This check fails ] struct child_t child; // ^ - entity.name.struct struct nested_t { // ^ entity.name.struct int bar; } nested; };
The text was updated successfully, but these errors were encountered:
[C] Allow declaring a struct pointer in a struct
82c3be6
Fixes sublimehq#1830 Signed-off-by: Raul E Rangel <[email protected]>
2b81840
60b1ad7
[C] Refactor struct handling
e0e37d7
So correctly fixing this involved a lot more changes then I expected. Fixes sublimehq#1830 Signed-off-by: Raul E Rangel <[email protected]>
Successfully merging a pull request may close this issue.
Defining a child struct pointer in a struct should not be treated as a struct declaration.
The text was updated successfully, but these errors were encountered: