Code completion for STD lib C++

guban 417516 at celes.unizar.es
Tue Apr 12 18:51:14 BST 2005


Hi all!

I am working on a pure C++ application using the STL. My problem is code 
completion in STD statements: it does't work when I don't use the std:: 
prefix. For example:

// Case 1
#include <vector>
using namespace std;
int main(int argc, char** argv)
{
	std::vector<int> v;
	v.        // <-- Code completion does work
}

// Case 2
#include <vector>
using namespace std;
int main(int argc, char** argv)
{
	vector<int> v;
	v.        // <-- Code completion doesn't work
}

I use Kdevelop 3.2 on a Debian/Sid and code completion did work in earlier 
versions (Kdevelop 3.0.x). So, any idea?
-- 
guban

-
to unsubscribe from this list send an email to kdevelop-request at kdevelop.org with the following body:
unsubscribe »your-email-address«



More information about the KDevelop mailing list