Skip to content
Snippets Groups Projects
Commit b9757a5e authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Disable C++0x support for now

It introduced at least one new crash to do with recovering from parsing
errors.

Reviewed-by: Roberto Raggi
parent 6e40b535
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ Document::Document(const QString &fileName)
localFileName.size());
_translationUnit = new TranslationUnit(_control, fileId);
_translationUnit->setQtMocRunEnabled(true);
_translationUnit->setCxxOxEnabled(true);
_translationUnit->setCxxOxEnabled(false);
_translationUnit->setObjCEnabled(true);
(void) _control->switchTranslationUnit(_translationUnit);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment