aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:07:53 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commit5693758e4650150d2bf9bcda1baf18334ad26e01 (patch)
treebbcd6efb04a8687037632734ddb263061d961685 /mesonbuild/compilers.py
parent2a835c2c10c3ae7c7f51db3bfe5af7d5eee33cb0 (diff)
downloadmeson-5693758e4650150d2bf9bcda1baf18334ad26e01.zip
meson-5693758e4650150d2bf9bcda1baf18334ad26e01.tar.gz
meson-5693758e4650150d2bf9bcda1baf18334ad26e01.tar.bz2
style: fix E231 violations
E231: missing whitespace after ',' Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r--mesonbuild/compilers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py
index 4e245e1..a194277 100644
--- a/mesonbuild/compilers.py
+++ b/mesonbuild/compilers.py
@@ -2226,7 +2226,7 @@ class GnuCPPCompiler(GnuCompiler, CPPCompiler):
# too strict without this and always fails.
return self.get_no_optimization_args() + ['-fpermissive']
-class GnuObjCCompiler(GnuCompiler,ObjCCompiler):
+class GnuObjCCompiler(GnuCompiler, ObjCCompiler):
def __init__(self, exelist, version, is_cross, exe_wrapper=None, defines=None):
ObjCCompiler.__init__(self, exelist, version, is_cross, exe_wrapper)
@@ -2329,7 +2329,7 @@ class ClangCCompiler(ClangCompiler, CCompiler):
def get_options(self):
return {'c_std': coredata.UserComboOption('c_std', 'C language standard to use',
['none', 'c89', 'c99', 'c11',
- 'gnu89', 'gnu99', 'gnu11',],
+ 'gnu89', 'gnu99', 'gnu11'],
'none')}
def get_option_compile_args(self, options):