diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-13 09:40:14 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | e8c1d6a0b5f786fbd249440eed88918c51c10fff (patch) | |
| tree | f400ca43967065acfe497b1db3b7fdc3c718d9e9 /mesonbuild/compilers/compilers.py | |
| parent | 249c22df004e971bdc3d4121f526358e7552591e (diff) | |
| download | meson-e8c1d6a0b5f786fbd249440eed88918c51c10fff.tar.gz | |
compilers: Remove Environment parameter from Compiler.get_option_compile_args
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 34ac57133..1be7ebeb5 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -632,7 +632,7 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta): def get_options(self) -> 'MutableKeyedOptionDictType': return {} - def get_option_compile_args(self, target: 'BuildTarget', env: 'Environment', subproject: T.Optional[str] = None) -> T.List[str]: + def get_option_compile_args(self, target: 'BuildTarget', subproject: T.Optional[str] = None) -> T.List[str]: return [] def get_option_std_args(self, target: BuildTarget, subproject: T.Optional[str] = None) -> T.List[str]: |
