C++: Find template member access in find usages
Example:
struct Foo {};
struct Bar {
template <typename T>
T *templateFunc() { return 0; }
};
struct Test {
Bar member;
void testFunc();
};
void Test::testFunc() {
member.templateFunc<Foo>(); // "templateFunc" and "Foo" outside of FindUsages
}
Change-Id: I0c5109d00c67054fe15b3fb98cf8cbca69123d8b
Reviewed-by:
Orgad Shaneh <orgads@gmail.com>
Showing
Please register or sign in to comment