summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-11-03 09:01:33 -0800
committerDylan Baker <dylan@pnwbakers.com>2025-11-19 10:48:48 -0800
commit67a49deb955a6a49b8f3155065e5f6bfecba42f2 (patch)
tree8f0a2753d2b7673587e55538723dfd2e97d92020 /mesonbuild/compilers/compilers.py
parent8938f5efad47364da9e6234660562ae5a05f1c06 (diff)
downloadmeson-67a49deb955a6a49b8f3155065e5f6bfecba42f2.tar.gz
compilers: Remove environment parameter from Compiler.find_framework_paths
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r--mesonbuild/compilers/compilers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 5dc53a86a..79771d04f 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -1191,7 +1191,7 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta):
allow_system: bool = True) -> T.Optional[T.List[str]]:
raise EnvironmentException(f'{self.id} does not support find_framework')
- def find_framework_paths(self, env: 'Environment') -> T.List[str]:
+ def find_framework_paths(self) -> T.List[str]:
raise EnvironmentException(f'{self.id} does not support find_framework_paths')
def attribute_check_func(self, name: str) -> str: