-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
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
C++: parse member variables using templates with forward declared types #2869
C++: parse member variables using templates with forward declared types #2869
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2869 +/- ##
=======================================
Coverage 87.16% 87.17%
=======================================
Files 194 194
Lines 44407 44416 +9
=======================================
+ Hits 38709 38718 +9
Misses 5698 5698
Continue to review full report at Codecov.
|
Thank you. Could you squash the changes into one commit? |
45fca9f
to
97d2a2c
Compare
Done and done. |
Thank you. |
parsers/cxx/cxx_parser_block.c
Outdated
@@ -262,6 +262,7 @@ static bool cxxParserParseBlockInternal(bool bExpectClosingBracket) | |||
cppBeginStatement(); | |||
} | |||
|
|||
int in_triangle = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you rename the local variable to iNestedAngleBracketLevel ?
The parser maintainer may prefer the naming scheme.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@pragmaware, could you look at this one? |
@drichardson, sorry for being late. |
Fixes universal-ctags#2867. Co-authored-by: Masatake YAMATO <yamato@redhat.com>
97d2a2c
to
9b9bf47
Compare
Done. |
Thank you. |
Time to merge? |
I will merge this. |
@drichardson, thank you for the contribution. |
Fixes #2867.