arsalank2
arsalank2

Reputation: 1731

Eclipse C/C++ indexer

I am working on Eclipse IDE for Java (Indigo). My project is using CDT in addition to Java source. I frequently get this error message from Eclipse, although everything works fine.

https://i.sstatic.net/aV9Ep.jpg

What is C/C++ indexer? What is the actual source of this error and how to remove it?

Upvotes: 1

Views: 1911

Answers (1)

MBober
MBober

Reputation: 1105

The C/C++ indexer parses your source code file to gather information used for auto completion, syntax highlight and so on.

You said you are using CDT in addition to Java source. Sounds to me as if you are using C/C++ and Java code in the same Eclipse Project. My guess would be that the C/C++ indexer accidentally tries to parse a Java source file and is confused. If so, use different Eclipse projects for your Java and for your C/C++ code.

Upvotes: 2

Related Questions