Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a lot of parser errors from eclipse but i don't have this errors when i compile the code. I want to know how i can ignore them?

share|improve this question
Another gem in the vein of stackoverflow.com/questions/9199974/gcc-allow-undefined-symbols – Seth Carnegie Jul 18 '12 at 17:13

2 Answers

In the Indigo version of the CDT:

Project Settings -> C/C++ General -> Code Analysis

You can enable/disable specific errors and warnings, as well as customize inclusion and exclusion patterns for those warnings.

If you get a large number of "Type 'TYPE' could not be resolved" errors, perhaps you need to make sure Eclipse can find all your code and libraries. You might want to check:

C/C++ General -> Paths and Symbols

share|improve this answer

Under Settings you can selectively turn off and on which errors it reports, and how it displays them.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.