|
|
|
|
Re: Unusually complicated Content Assist [message #1786523 is a reply to message #1786520] |
Sat, 05 May 2018 07:00 |
David Vavra Messages: 1426 Registered: October 2012 |
Senior Member |
|
|
You are getting: <function> : <return type>
In the case of begin:
FUNCTION: begin(void)
RETURNS: std::set<string,less<string>, allocator<string> > :: iterator
You need the fully qualified type.
iterator by itself doesn't mean anything.
You need to know which one.
std::set<string,less<string>, allocator<string> > is the scope of iterator
Yes, the count function returns an enormous (mindboggling, even) qualified type.
Welcome to the world of C++ and STL.
If you don't like the current output, you could file an enhancement request at
https://bugs.eclipse.org/bugs/enter_bug.cgi?product=CDT
You'll likely need to log in first.
This seems a low priority item so don't hold your breath waiting for a fix.
In the meantime, ignore everything after the first ':' on a line if it's bothersome.
[Updated on: Sat, 05 May 2018 07:10] Report message to a moderator
|
|
|
Powered by
FUDForum. Page generated in 0.03835 seconds