| Summary: | References created by template instantiations not found | ||
|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | Jens Elmenthaler <jens.elmenthaler> |
| Component: | cdt-indexer | Assignee: | Project Inbox <cdt-indexer-inbox> |
| Status: | CLOSED DUPLICATE | QA Contact: | Markus Schorn <mschorn.eclipse> |
| Severity: | normal | ||
| Priority: | P3 | CC: | cdtdoug, yevshif, zeratul976 |
| Version: | 7.0 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
This looks like a duplicate of bug 326070. *** This bug has been marked as a duplicate of bug 326070 *** |
Build Identifier: HEAD Create a source file with the following content: template<class T> class A { public: A(T &t) { t.doSomething(); } }; class B { public: void doSomething() {}; }; int main() { B b; A<B> a(b); return 0; } Neither Ctrl-Shift-G nor Ctrl-Alt-H show the reference to B::doSomething(). Reproducible: Always