Community
Participate
Working Groups
1. create 2 files: test.h ----------------- template <class T> class Base { public: void func(){}; }; class D1 : public Base<int> {}; class D2 : public Base<char> {}; void test() { D1 d; d.func(); D2 dd; dd.func(); } ------------------------ test.cpp -------------- #include "test.h" ------------------------ 2. select void func(){}; and rename function name to new_func. 3. eclipse does not rename d.func(); and dd.func(); CDT Version: 7.0.0.201006041510 -- Configuration Details -- Product: Eclipse 1.3.0.20091112-2040 (org.eclipse.epp.package.cpp.product) Installed Features: org.eclipse.platform 3.6.0.v20100121-9hF71GITFufnsj44XsigdRiv20ClbUb3ou
Created attachment 229988 [details] Minimal project to verify the problem Verified on eclipse-SDK-4.3M5a-win32-x86_64. Here's a minimal project that demonstrates the problem. Interestingly, the changes show up in the live-preview, but are reverted in the actual change.
This appears to be the same problem as bug 240692. I've traced it down to the same failure in ASTManager.isSameBinding(). The bug should probably be closed as a duplicate.
*** This bug has been marked as a duplicate of bug 240692 ***