Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] vector iterator problem

I use the following statement in main function
std::vector<int>::iterator i;
Eclipse shows a wrong code completion menu (which doesn't contain iterator type) after then writing
std::vector<int>::
Using dot instead of last :: brings the correct code completion list (with iterator type), but this use is wrong.
On the global section of the code, writing . instead of last :: doesn't bring any code completion list, and there isn't iterator type in the list shown after writing the last ::


Back to the top