kai666_73
b30b69bbf3
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>
2015-04-22 13:17:15 +00:00
..
2015-02-12 17:29:21 +01:00
2015-02-27 14:49:55 +00:00
2015-04-22 11:47:08 +00:00
2015-01-16 12:37:56 +01:00
2015-02-17 09:45:34 +00:00
2015-04-22 13:17:15 +00:00
2015-02-17 09:45:34 +00:00
2015-04-20 14:51:56 +00:00
2015-01-16 12:37:56 +01:00
2015-03-13 14:34:07 +00:00
2015-04-20 13:37:35 +00:00
2014-05-08 15:29:21 +02:00
2015-02-12 17:29:21 +01:00
2015-01-16 12:37:56 +01:00
2015-01-16 12:37:56 +01:00
2014-06-17 16:23:23 +02:00
2014-06-17 16:23:23 +02:00
2014-11-10 15:45:14 +01:00