diff options
author | makise-homura <akemi_homura@kurisa.ch> | 2019-04-19 21:01:14 +0300 |
---|---|---|
committer | makise-homura <akemi_homura@kurisa.ch> | 2019-04-19 21:01:14 +0300 |
commit | 0ec71fff34b3a120b4a688e4dd79a64dd2b0f6a1 (patch) | |
tree | c671d119a67729ad28b9e37abdc926b3c5ad9e9e | |
parent | 94b7ff38232ca680dab8498a2c205118dfe9c3d8 (diff) | |
download | meson-0ec71fff34b3a120b4a688e4dd79a64dd2b0f6a1.zip meson-0ec71fff34b3a120b4a688e4dd79a64dd2b0f6a1.tar.gz meson-0ec71fff34b3a120b4a688e4dd79a64dd2b0f6a1.tar.bz2 |
Fix indentation
-rw-r--r-- | mesonbuild/compilers/cpp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 8a56cc8..87e6ffc 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -252,9 +252,9 @@ class ElbrusCPPCompiler(GnuCPPCompiler, ElbrusCompiler): def get_options(self): opts = CPPCompiler.get_options(self) opts.update({'cpp_std': coredata.UserComboOption('cpp_std', 'C++ language standard to use', - ['none', 'c++98', 'c++03', 'c++0x', 'c++11', 'c++14', 'c++1y', - 'gnu++98', 'gnu++03', 'gnu++0x', 'gnu++11', 'gnu++14', 'gnu++1y'], - 'none'), + ['none', 'c++98', 'c++03', 'c++0x', 'c++11', 'c++14', 'c++1y', + 'gnu++98', 'gnu++03', 'gnu++0x', 'gnu++11', 'gnu++14', 'gnu++1y'], + 'none'), 'cpp_debugstl': coredata.UserBooleanOption('cpp_debugstl', 'STL debug mode', False)}) |