summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-11-13 09:40:51 -0800
committerDylan Baker <dylan@pnwbakers.com>2025-11-19 10:48:48 -0800
commitc914f805c63f0ba45b1aaf489a4cc5545ff66b59 (patch)
tree5490ce36f90c5a4b4191b78a3debb6aab58e7cbd
parente8c1d6a0b5f786fbd249440eed88918c51c10fff (diff)
downloadmeson-c914f805c63f0ba45b1aaf489a4cc5545ff66b59.tar.gz
compilers: Remove dead "update_options" method
-rw-r--r--mesonbuild/compilers/compilers.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 1be7ebeb5..023c263e5 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -624,11 +624,6 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta):
def make_option_name(self, key: OptionKey) -> str:
return f'{self.language}_{key.name}'
- @staticmethod
- def update_options(options: MutableKeyedOptionDictType, *args: T.Tuple[OptionKey, options.AnyOptionType]) -> MutableKeyedOptionDictType:
- options.update(args)
- return options
-
def get_options(self) -> 'MutableKeyedOptionDictType':
return {}