diff options
| author | Daniel Teske <[email protected]> | 2013-01-01 14:45:37 +0100 |
|---|---|---|
| committer | hjk <[email protected]> | 2013-01-01 15:19:43 +0100 |
| commit | f320426cd1a543f373e61d4c91c6c7e8d35e7247 (patch) | |
| tree | 6cd3fe098eb30b1c0c9b598251a68b8c547f51ba /src/plugins/cpptools/ModelManagerInterface.h | |
| parent | 577fe8a49fdbe10f506cf5885d4647f959c3b31a (diff) | |
Use C++11 parsing mode for CMake, AutoTools and Generic project managers
Those 3 project managers can't easily figure out the right mode for code
parsing. The code we are parsing is predominantly C++98 code. But for
those using C++98 toolchains having valid C++11 code not be marked as a
error is probably not much of a problem, whereas the reverse, using a
C++11 toolchain and having valid code being marked as a error is
annoying.
Change-Id: I8dcc172029045cf591b3ba0adef1585f3f94fd39
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/cpptools/ModelManagerInterface.h')
| -rw-r--r-- | src/plugins/cpptools/ModelManagerInterface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/ModelManagerInterface.h b/src/plugins/cpptools/ModelManagerInterface.h index 8477b032231..7198a14b0ab 100644 --- a/src/plugins/cpptools/ModelManagerInterface.h +++ b/src/plugins/cpptools/ModelManagerInterface.h @@ -73,7 +73,7 @@ public: { public: ProjectPart() - : language(CXX) + : language(CXX11) , qtVersion(UnknownQt) {} |
