search class member function using GNU Global

283 views Asked by At

How to search member function of a class using GNU Global?

For example, there're two classes

class A{
func();
...};

class B{
func();
...}

If I search func, both A::func and B::func appears. If I search "A::func", nothing is returned.

0

There are 0 answers