aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
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)