Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » code completition doesnt work
code completition doesnt work [message #774315] Tue, 03 January 2012 17:24 Go to next message
vollka racho is currently offline vollka rachoFriend
Messages: 1
Registered: January 2012
Junior Member
Hi eclipse cdt users,

Im working with eclipse and the cdt plugin on my Debian machine since a few days.
Im a little bit disappointed because there is no code completition. I read in the Internet, that eclipse support code completition.

When i type:

string name;

name.

after i write the point after name, there must open a window with all methods of the string class.
But nothing happens. Im working with eclipse galileo.
Can some one help me to solve the problem please ?

Re: code completition doesnt work [message #774575 is a reply to message #774315] Wed, 04 January 2012 08:00 Go to previous message
Axel Mueller is currently offline Axel MuellerFriend
Messages: 1973
Registered: July 2009
Senior Member
I guess the type string is unresolved. You want to use std::string?
Then you should add the following:
#include <string>
std::string name;



Before you ask
- search this forum
- see the FAQ http://wiki.eclipse.org/CDT/User/FAQ
- google
Previous Topic:Alternative build location for built dlls?
Next Topic:compiler becomes slower and slower
Goto Forum:
  


Current Time: Thu Mar 28 09:33:37 GMT 2024

Powered by FUDForum. Page generated in 0.02179 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top