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
input.c:
struct packet_type edsa_packet_type __read_mostly = { .type = cpu_to_be16(ETH_P_EDSA), .func = edsa_rcv, };
New C parser output:
$ ./ctags -o - -I __read_mostly foo.c edsa_packet_type foo.c /^struct packet_type edsa_packet_type __read_mostly = {$/;" s file:
Old C parser output:
$ ./ctags --languages=+OldC,-C -o - -I __read_mostly foo.c edsa_packet_type foo.c /^struct packet_type edsa_packet_type __read_mostly = {$/;" v typeref:struct:packet_type
OldC parser tags edsa_packet_type as a variable. This is my expected behaviour.
The text was updated successfully, but these errors were encountered:
Merge pull request #962 from pragmaware/struct-initialization
a9c6e5b
Fix bug #945.
Fixed via #962
Sorry, something went wrong.
pragmaware
No branches or pull requests
input.c:
New C parser output:
Old C parser output:
OldC parser tags edsa_packet_type as a variable. This is my expected behaviour.
The text was updated successfully, but these errors were encountered: