From 776f899e78e88600f34176ef4088c32208802777 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 6 Sep 2015 18:38:27 +0300 Subject: Made boost on windows kinda work. --- compilers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'compilers.py') diff --git a/compilers.py b/compilers.py index 95582c9..24853e1 100644 --- a/compilers.py +++ b/compilers.py @@ -925,9 +925,9 @@ class VisualStudioCCompiler(CCompiler): self.always_args = VisualStudioCCompiler.vs2013_always_args else: self.always_args = VisualStudioCCompiler.vs2010_always_args - self.std_warn_args = {'1': ['/W2'], - '2': ['/W3'], - '3': ['/w4']} + self.warn_args = {'1': ['/W2'], + '2': ['/W3'], + '3': ['/w4']} def get_always_args(self): return self.always_args -- cgit v1.1