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

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.

share|improve this question
You can still try to configure eclipse c++11 support: stackoverflow.com/q/9131763/72178 – ks1322 Jan 29 at 13:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.