-
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++: Variables and prototypes #742
C++: Variables and prototypes #742
Conversation
…rates many false tags (things that aren't actually prototypes). Silence them. Try to catch variable instantiations in the form 'Type var(params)' instead, which are far more common.
Could you rename variables-prototypes-2.cpp.b directory to variables-prototypes-2.cpp.d? https://travis-ci.org/universal-ctags/ctags/jobs/98898723
|
Done. |
After introducing your commit, the result of Units/parser-cpp.r/variables-prototypes.cpp.b/input.cpp is
|
Yes, it has.
So the net result is:
In sum: a gain. |
Fair enough. Thank you. |
Local function prototypes are unlikely and the current code generates many false tags (things that aren't actually prototypes). Silence them. Try to catch variable instantiations in the form 'Type var(params)' instead, which are far more common.