aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/environment.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-09-21 15:35:53 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-10-01 15:05:00 -0700
commit96a1ae6dfe9209d907803b9f2ecca29d2047a47f (patch)
tree1f30efe4b76906ca5db27cea7a5ac0cd4163a0ab /mesonbuild/environment.py
parent1d04caff29f675329ecb6491b50578474d71b6f4 (diff)
downloadmeson-96a1ae6dfe9209d907803b9f2ecca29d2047a47f.zip
meson-96a1ae6dfe9209d907803b9f2ecca29d2047a47f.tar.gz
meson-96a1ae6dfe9209d907803b9f2ecca29d2047a47f.tar.bz2
compilers: fully type annotate the C compilers
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r--mesonbuild/environment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 513a03c..ac77ef1 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -1324,8 +1324,8 @@ class Environment:
cls = VisualStudioCCompiler if lang == 'c' else VisualStudioCPPCompiler
linker = self._guess_win_linker(['link'], cls, for_machine)
return cls(
- compiler, version, for_machine, is_cross, info, exe_wrap,
- target, full_version=cl_signature, linker=linker)
+ compiler, version, for_machine, is_cross, info, target,
+ exe_wrap, full_version=cl_signature, linker=linker)
if 'PGI Compilers' in out:
cls = PGICCompiler if lang == 'c' else PGICPPCompiler
self.coredata.add_lang_args(cls.language, cls, for_machine, self)