diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-12 10:34:05 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | 6e081df405cfba85130ccd239f10ad769db8a34a (patch) | |
| tree | 686c27376b44bb293432343effb06d9d1127f347 /mesonbuild/compilers/d.py | |
| parent | ca15ed8f73e6b8c0cad81bee119c5c099e066767 (diff) | |
| download | meson-6e081df405cfba85130ccd239f10ad769db8a34a.tar.gz | |
compilers: Remove Environment parameter from Compiler.has_multi_arguments
Diffstat (limited to 'mesonbuild/compilers/d.py')
| -rw-r--r-- | mesonbuild/compilers/d.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py index 8d13c1ae6..4e31ded83 100644 --- a/mesonbuild/compilers/d.py +++ b/mesonbuild/compilers/d.py @@ -536,7 +536,7 @@ class DCompiler(Compiler): def compiler_args(self, args: T.Optional[T.Iterable[str]] = None) -> DCompilerArgs: return DCompilerArgs(self, args) - def has_multi_arguments(self, args: T.List[str], env: 'Environment') -> T.Tuple[bool, bool]: + def has_multi_arguments(self, args: T.List[str]) -> T.Tuple[bool, bool]: return self.compiles('int i;\n', extra_args=args) def _get_target_arch_args(self) -> T.List[str]: |
