diff options
author | Tristan Partin <tristan@partin.io> | 2023-07-12 17:56:18 -0500 |
---|---|---|
committer | Tristan Partin <tristan@partin.io> | 2023-07-12 18:56:06 -0500 |
commit | 33c8362a1cdd57dd60c7be8fdf3b0566ccdeb3bf (patch) | |
tree | 441f9e319ee99b27bc1c051e204923cf57488892 /mesonbuild/compilers/cpp.py | |
parent | dc692d98fc48f8d5c6ea528adc6dce481412b02f (diff) | |
download | meson-33c8362a1cdd57dd60c7be8fdf3b0566ccdeb3bf.zip meson-33c8362a1cdd57dd60c7be8fdf3b0566ccdeb3bf.tar.gz meson-33c8362a1cdd57dd60c7be8fdf3b0566ccdeb3bf.tar.bz2 |
Match the method signatures of parent classes
Names and types of some methods did not match their parent methods.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r-- | mesonbuild/compilers/cpp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index be5c083..bb1ebb5 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -867,8 +867,8 @@ class CcrxCPPCompiler(CcrxCompiler, CPPCompiler): def get_compile_only_args(self) -> T.List[str]: return [] - def get_output_args(self, target: str) -> T.List[str]: - return [f'-output=obj={target}'] + def get_output_args(self, outputname: str) -> T.List[str]: + return [f'-output=obj={outputname}'] def get_option_link_args(self, options: 'KeyedOptionDictType') -> T.List[str]: return [] |