It seems like derived structures is not supported by Global.
Example:
d:/test $ cat test.cpp
struct a : std::unary_function<int, bool>
{
};
class b : public std::unary_function<int, bool>
{
};
d:/test $ gtags
d:/test $ global a # I expect "test.cpp"
d:/test $ global b
test.cpp
d:/test $
_______________________________________________ Bug-global mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-global
