It'd be really nice if you could enhance Find References (and by extension, Rename) so that individual overloads of a function could be found/renamed. For example:
struct Blah {
void foo();
void foo(int x);
void foo(float x);
};
The ability to choose between renaming all uses of foo() or renaming uses of the selected overload of foo() would be fantastic. Eclipse CDT handles this case, but we'd rather not have to use it.