From d2b9195c6603fe51dacad066fef6bbc4a5614a5f Mon Sep 17 00:00:00 2001 From: Stenzek Date: Thu, 25 Apr 2024 14:59:27 +1000 Subject: [PATCH] MemorySettingsInterface: Warning fix --- src/common/memory_settings_interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/memory_settings_interface.h b/src/common/memory_settings_interface.h index baa071a1d..612abf202 100644 --- a/src/common/memory_settings_interface.h +++ b/src/common/memory_settings_interface.h @@ -40,7 +40,7 @@ public: void DeleteValue(const char* section, const char* key) override; void ClearSection(const char* section) override; void RemoveSection(const char* section) override; - void RemoveEmptySections(); + void RemoveEmptySections() override; std::vector GetStringList(const char* section, const char* key) const override; void SetStringList(const char* section, const char* key, const std::vector& items) override;