Community
Participate
Working Groups
Using CDT 8.1.0.201110241007 template<typename T> class Array { public: template<class TIterator> void erase(TIterator it) // Open call hierarchy on erase, it's empty { } }; int main() { Array<int> test; int it; test.erase(it); // Open call hierarchy on erase, it's empty }
Thanks for the example, added testcase and fix.
*** cdt git genie on behalf of Markus Schorn *** Bug 361999: Call Hierarchy for instance of template-specialization. [*] http://git.eclipse.org/c/cdt/org.eclipse.cdt.git/commit/?id=ecfdcab4abb0a82f2a30e697b3823f0b3219cab6
Thank you, I can confirm that it fixed the issue in my environment.