Skip to main content

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

I reported the bug ( https://bugs.eclipse.org/bugs/show_bug.cgi?id=255898 )
Thanks

On Wed, Nov 19, 2008 at 7:37 PM, Sergey Prigogin <eclipse.sprigogin@xxxxxxxxx> wrote:
Please file a bug for this problem. To make the problem reproducible by others run your source file through C++ preprocessor, verify that the problem is still reproducible in the preprocessed file and attach that file to the bug. Thanks.

-sergey

On Wed, Nov 19, 2008 at 8:37 AM, Volkan Orhan <volkanorh@xxxxxxxxx> wrote:
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 ::


_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev



_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev



Back to the top