This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS6.0.1.00040 Editor Flagging non-errors as errors

Why is CCS showing the "?" icon, and if the line is hovered over the pop over says "Syntax error". This is in an MSP430 project.

  • If there are no errors reported by the compiler in the CCS build console, then this Syntax error is likely coming from the Eclipse indexer that comes built-in with CCS. You can take a look at and adjust the indexer settings and even disable the indexer from Project Properties->C/C++ General->Indexer. There is also a way to disable the indexer markers without disabling the indexer itself. If you disable the indexer completely you will lose the capabilities of code completion and navigation to declaration/definition. However, you can disable the indexer marker by going to Window->Preferences->General->Editors->Text Editors->Annotations and uncheck all three checkboxes for "C/C++ Indexer Markers".

  • Thanks,

    That got rid of those annoying flags.