diff options
author | makise-homura <akemi_homura@kurisa.ch> | 2018-03-19 23:39:06 +0300 |
---|---|---|
committer | makise-homura <akemi_homura@kurisa.ch> | 2018-03-19 23:39:06 +0300 |
commit | 6230c2a2f61f29cdf92017d7b5a06420f0730114 (patch) | |
tree | a1d85a18931aace2cc5a956a9e749986f64482e4 | |
parent | 7cc41baa98e486d6fd08ca5bb6f336481b757c4a (diff) | |
download | meson-6230c2a2f61f29cdf92017d7b5a06420f0730114.zip meson-6230c2a2f61f29cdf92017d7b5a06420f0730114.tar.gz meson-6230c2a2f61f29cdf92017d7b5a06420f0730114.tar.bz2 |
Fixed indentation and space issues found by SideCI
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 | ||||
-rw-r--r-- | mesonbuild/compilers/cpp.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 0ab9b49..2e64131 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1084,7 +1084,7 @@ class ElbrusCompiler(GnuCompiler): self.id = 'lcc' self.base_options = ['b_pgo', 'b_coverage', 'b_ndebug', 'b_staticpic', - 'b_lundef', 'b_asneeded' ] + 'b_lundef', 'b_asneeded'] class ClangCompiler: diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index fd09e46..394c961 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -145,7 +145,7 @@ class ElbrusCPPCompiler(GnuCPPCompiler, ElbrusCompiler): opts['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') return opts |