The Eclipse CDT indexer handles modern C++ code very badly and reports a lot of incorrect semantic errors when you open a C++ source file in an editor. How can you disable the indexer reliably? Unchecking the "Enable indexer" option in Preferences -> C/C++ -> Indexer does not seem to have an effect.
I am non using any C++ 11 language features. Yet the CDT parser cannot even deal with boost properly, e.g.:
#include <boost/smart_ptr/shared_array.hpp>
using boost::shared_array;
results in the semantic error Symbol 'shared_array' could not be resolved, although the correct shared_array.hpp include is found by CDT.