compilers: Fix typo in visual studio warning argument

pull/812/head
Nirbheek Chauhan 9 years ago
parent e459fd2f53
commit e8dc13248e
  1. 2
      mesonbuild/compilers.py

@ -1731,7 +1731,7 @@ class VisualStudioCCompiler(CCompiler):
self.always_args = ['/nologo', '/showIncludes'] self.always_args = ['/nologo', '/showIncludes']
self.warn_args = {'1': ['/W2'], self.warn_args = {'1': ['/W2'],
'2': ['/W3'], '2': ['/W3'],
'3': ['/w4']} '3': ['/W4']}
self.base_options = ['b_pch'] # FIXME add lto, pgo and the like self.base_options = ['b_pch'] # FIXME add lto, pgo and the like
def get_always_args(self): def get_always_args(self):

Loading…
Cancel
Save