From c914f805c63f0ba45b1aaf489a4cc5545ff66b59 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Thu, 13 Nov 2025 09:40:51 -0800 Subject: compilers: Remove dead "update_options" method --- mesonbuild/compilers/compilers.py | 5 ----- 1 file changed, 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 {} -- cgit v1.2.3