vote up 1 vote down star

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

flag

2 Answers

vote up 1 vote down check

This works for me using Galileo, I would have expected this to be working for a couple of releases now.

Check that the CDT is able to find the appropriate include file. You can check the Includes under the project explorer.

If it isn't finding your includes, check your project properties -> C/C++ General -> Paths and Symbols. You can add paths to places to find the headers. It Just worked for me, the new project wizard set up paths to the cygwin I have on my path.

cdt screenshot

link|flag
vote up 0 vote down

I'm having the same problem with Galileo. The indexer seems configured properly since when I'm in a .C, I have the autocomplete working with everything defined in the .H, as long as there are no typedef.

I tried both the fast indexer and the full indexer with the same result.

I'm using Eclipse 3.5.1 R35 with CDT 6.0.0 and CDT/Mylyn 5.1.0.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.