Fix a bunch of random warnings

This commit is contained in:
Connor McLaughlin
2020-09-13 11:54:51 +10:00
parent ccaff2e7cd
commit 3847be86b0
13 changed files with 62 additions and 277 deletions

View File

@ -9,6 +9,8 @@
class SettingsInterface
{
public:
virtual ~SettingsInterface();
virtual void Clear() = 0;
virtual int GetIntValue(const char* section, const char* key, int default_value = 0) = 0;