Skip to content
  • kai666_73's avatar
    C++: Find template member access in find usages · b30b69bb
    kai666_73 authored
    
    
    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: default avatarOrgad Shaneh <orgads@gmail.com>
    b30b69bb