diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-10-31 11:09:16 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | 3832a592db68e935e6653a503a26b41f5777ae2e (patch) | |
| tree | bc890dd822d3b31e8ffce6aa16a3a3be9722e03b /mesonbuild/compilers/cpp.py | |
| parent | 0505da775e992485eb689827df8d5d76adf02c75 (diff) | |
| download | meson-3832a592db68e935e6653a503a26b41f5777ae2e.tar.gz | |
compilers: Remove Environment parameter from Compiler.compiles()
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
| -rw-r--r-- | mesonbuild/compilers/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index b1830a1c2..f3301a963 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -111,7 +111,7 @@ class CPPCompiler(CLikeCompiler, Compiler): #include <{hname}> using {symbol}; int main(void) {{ return 0; }}''' - return self.compiles(t, env, extra_args=extra_args, + return self.compiles(t, extra_args=extra_args, dependencies=dependencies) def _test_cpp_std_arg(self, cpp_std_value: str) -> bool: |
