diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-09-25 09:41:07 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-09-25 09:41:07 +0530 |
commit | e8dc13248eda9dda04cffdc68609e55989328ea3 (patch) | |
tree | bdd23e9e756446120639d39ad7747e6de93207a8 /mesonbuild/compilers.py | |
parent | e459fd2f53dfe13297630cc04e4a420f12668f8a (diff) | |
download | meson-e8dc13248eda9dda04cffdc68609e55989328ea3.zip meson-e8dc13248eda9dda04cffdc68609e55989328ea3.tar.gz meson-e8dc13248eda9dda04cffdc68609e55989328ea3.tar.bz2 |
compilers: Fix typo in visual studio warning argument
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r-- | mesonbuild/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index aafaa7f..8772803 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -1731,7 +1731,7 @@ class VisualStudioCCompiler(CCompiler): self.always_args = ['/nologo', '/showIncludes'] self.warn_args = {'1': ['/W2'], '2': ['/W3'], - '3': ['/w4']} + '3': ['/W4']} self.base_options = ['b_pch'] # FIXME add lto, pgo and the like def get_always_args(self): |