diff options
Diffstat (limited to 'compilers.py')
-rw-r--r-- | compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilers.py b/compilers.py index eea79d0..6be55b4 100644 --- a/compilers.py +++ b/compilers.py @@ -1422,7 +1422,7 @@ class GnuCPPCompiler(CPPCompiler): return get_gcc_soname_args(self.gcc_type, shlib_name, path, soversion) def get_options(self): - opts = {'cpp_std' : coredata.UserComboOption('cpp_std', 'C language standard to use', + opts = {'cpp_std' : coredata.UserComboOption('cpp_std', 'C++ language standard to use', ['none', 'c++03', 'c++11', 'c++1y'], 'c++11')} if self.gcc_type == GCC_MINGW: |