diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2025-05-09 11:50:02 +0200 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2025-05-15 02:05:18 -0400 |
| commit | 625184335f6898a573d7e24040d3e94bc9ab0c8e (patch) | |
| tree | f5b6e915aa1de27c79de2bfcd0be6c21e1b80cb0 | |
| parent | e71d1dc6c3d500b8d7efe45ec77b4b22b1efa1a6 (diff) | |
| download | meson-625184335f6898a573d7e24040d3e94bc9ab0c8e.tar.gz | |
mconf: remove dead function
This was the pre-refactoring implementation of `-D`, which is now unused.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | mesonbuild/mconf.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index b0e44e967..d03e6487e 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -125,9 +125,6 @@ class Conf: def clear_cache(self) -> None: self.coredata.clear_cache() - def set_options(self, options: T.Dict[OptionKey, str]) -> bool: - return self.coredata.set_options(options) - def save(self) -> None: # Do nothing when using introspection if self.default_values_only: |
