diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2024-06-11 21:20:33 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-06-14 17:19:53 +0300 |
| commit | 181c3499fde491650269c236ea639c92f10c6914 (patch) | |
| tree | f272a670ebc70bc225bce54fbd9b2d71465d7ed3 /mesonbuild/compilers/cpp.py | |
| parent | 9a6fcd4d9a0c7bb248c5d0587632b741a3301e03 (diff) | |
| download | meson-181c3499fde491650269c236ea639c92f10c6914.tar.gz | |
Fix mypy.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
| -rw-r--r-- | mesonbuild/compilers/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index a01b377f4..df2f90510 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) |
