aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers.py
diff options
context:
space:
mode:
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 4178f0b..40387ca 100644
--- a/mesonbuild/compilers.py
+++ b/mesonbuild/compilers.py
@@ -2473,7 +2473,7 @@ class IntelCCompiler(IntelCompiler, CCompiler):
return ['-shared']
def has_multi_arguments(self, args, env):
- return super(IntelCCompiler, self).has_multi_arguments(args + ['-diag-error', '10006'], env)
+ return super().has_multi_arguments(args + ['-diag-error', '10006'], env)
class IntelCPPCompiler(IntelCompiler, CPPCompiler):
@@ -2521,7 +2521,7 @@ class IntelCPPCompiler(IntelCompiler, CPPCompiler):
return self.get_no_optimization_args()
def has_multi_arguments(self, args, env):
- return super(IntelCPPCompiler, self).has_multi_arguments(args + ['-diag-error', '10006'], env)
+ return super().has_multi_arguments(args + ['-diag-error', '10006'], env)
class FortranCompiler(Compiler):