aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-06-11 21:20:33 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2024-06-14 17:19:53 +0300
commit181c3499fde491650269c236ea639c92f10c6914 (patch)
treef272a670ebc70bc225bce54fbd9b2d71465d7ed3 /mesonbuild/compilers/cpp.py
parent9a6fcd4d9a0c7bb248c5d0587632b741a3301e03 (diff)
downloadmeson-181c3499fde491650269c236ea639c92f10c6914.zip
meson-181c3499fde491650269c236ea639c92f10c6914.tar.gz
meson-181c3499fde491650269c236ea639c92f10c6914.tar.bz2
Fix mypy.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r--mesonbuild/compilers/cpp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index a01b377..df2f905 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -810,7 +810,7 @@ class CPP11AsCPP14Mixin(CompilerMixinBase):
# copy the members because the option proxy doesn't support it.
options = copy.deepcopy(options)
if options.get_value(key) == 'vc++11':
- options.set_value(key,'vc++14')
+ options.set_value(key, 'vc++14')
else:
options.set_value(key, 'c++14')
return super().get_option_compile_args(options)