For all my code Eclipse's autocomplete function is working fine, except when I use a typedef.
Example code (someclass.hh):
typedef std::vector<int> IntVector;
class SomeClass {
void sort_int_vector(IntVector &iv) {
iv.//eclipse auto complete does not work. (ctrl-space)
}
}
How can I configure Eclipse to do auto-complete in this case? Or is this not possible?
I use the Ganymede C/C++ (CDT) package for Linux 64-bit