diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-13 09:43:55 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | 0c8dcc8138bf47a73ff3add1c1a09ee900797f03 (patch) | |
| tree | b0fd3ea6785bd606d58bc3f8022fff7d7c6ba3e5 /mesonbuild/compilers/compilers.py | |
| parent | c914f805c63f0ba45b1aaf489a4cc5545ff66b59 (diff) | |
| download | meson-0c8dcc8138bf47a73ff3add1c1a09ee900797f03.tar.gz | |
compilers: Remove Environment parameter from Compiler.symbols_have_underscore_prefix
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 023c263e5..64ef53cd6 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -574,7 +574,7 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta): dependencies: T.Optional[T.List['Dependency']] = None) -> T.Tuple[bool, bool]: raise EnvironmentException('%s does not support has_type ' % self.get_id()) - def symbols_have_underscore_prefix(self, env: 'Environment') -> bool: + def symbols_have_underscore_prefix(self) -> bool: raise EnvironmentException('%s does not support symbols_have_underscore_prefix ' % self.get_id()) def get_exelist(self, ccache: bool = True) -> T.List[str]: |
