How can I make eclipse CDT ignore errors?

c++, eclipse, eclipse-cdt

Solution

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

Problem

I'm having a lot of parser errors from eclipse but I don't have these errors when I compile the code. How can I ignore them?

Original source

Related problems