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