xref: /Universal-ctags/Units/parser-cxx.r/bug1924919.cpp.d/README (revision ac82628dd429ee5f384329184a313d081ad1c897)
1The orignal bug report can be found in https://sourceforge.net/p/ctags/bugs/217/
2
3I, Masatake YAMATO, think both a bug report and developer of e-ctags go wrong.
4
5Let's consider following input:
6
7    #include <string>
8    namespace mud {
9	    std::string MajorVersion;
10	    std::string MinorVersion;
11	    int (* foo) (void);
12    };
13
14
15All MajorVersion, MinorVersion and foo are tagged with 'm' kind.
16This is less informative. Whether they are members or not can
17be known from "namespace:mud" field of tags file.
18