aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 19:50:15 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commitf0b30baa39180a1047da362eb1411157228d18b7 (patch)
tree1fa609b6ac6102fc841f593ea5c6338578d78fd0 /mesonbuild/compilers.py
parent15629d2fae237f71e4c9d67b519e7ef70e9eba78 (diff)
downloadmeson-f0b30baa39180a1047da362eb1411157228d18b7.zip
meson-f0b30baa39180a1047da362eb1411157228d18b7.tar.gz
meson-f0b30baa39180a1047da362eb1411157228d18b7.tar.bz2
style: fix E225 violations
E225: missing whitespace around operator Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r--mesonbuild/compilers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py
index 0a3f8cb..801dffb 100644
--- a/mesonbuild/compilers.py
+++ b/mesonbuild/compilers.py
@@ -1836,7 +1836,7 @@ class DmdDCompiler(DCompiler):
class VisualStudioCCompiler(CCompiler):
std_warn_args = ['/W3']
- std_opt_args= ['/O2']
+ std_opt_args = ['/O2']
def __init__(self, exelist, version, is_cross, exe_wrap):
CCompiler.__init__(self, exelist, version, is_cross, exe_wrap)