Skip to content

Commit

Permalink
Update to initialize with 1 not 0 to workaround tree-sitter mistaking…
Browse files Browse the repository at this point in the history
… for pure virtual identifier.
  • Loading branch information
lawmurray committed Nov 27, 2024
1 parent 144319b commit 42bf22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/parsing.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ class ClassWithMembers {
/**
* Test member variable with initializer.
*/
int y = 0;
int y = 1;

/**
* Test member variable with brace initializer.
Expand Down

0 comments on commit 42bf22f

Please sign in to comment.