summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-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 {}