diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-12 10:05:11 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | 0e6fd84db2299b45d9abbe42cb461fa7e49b27c3 (patch) | |
| tree | 5c33b2030593ada2b55d26e5fa48852ad89bc621 /mesonbuild/compilers/compilers.py | |
| parent | 198156295899ddb5e9c91f1c889d50f27e8a7692 (diff) | |
| download | meson-0e6fd84db2299b45d9abbe42cb461fa7e49b27c3.tar.gz | |
compilers: Remove Environment parameter from Compiler.get_language_stdlib_only_link_flags
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
| -rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 9795668fc..929274ae4 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -976,7 +976,7 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta): def openmp_link_flags(self, env: Environment) -> T.List[str]: return self.openmp_flags(env) - def language_stdlib_only_link_flags(self, env: 'Environment') -> T.List[str]: + def language_stdlib_only_link_flags(self) -> T.List[str]: return [] def gnu_symbol_visibility_args(self, vistype: str) -> T.List[str]: |
