Disable C++0x support for now

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

Reviewed-by: Roberto Raggi
This commit is contained in:
Thorbjørn Lindeijer
2010-03-25 17:59:17 +01:00
parent 6e40b53512
commit b9757a5eb3

View File

@@ -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);
}