SimpleConfig: Add missing definition.

This commit is contained in:
2023-10-23 21:51:43 -07:00
parent 1bc8a9ad82
commit f76d524999
2 changed files with 8 additions and 1 deletions

View File

@@ -111,6 +111,13 @@ SimpleConfig::PutGlobal(std::string &key, const std::string &value)
}
void
SimpleConfig::PutGlobal(const char *key, const std::string &value)
{
return globalConfig.Put(key, value);
}
SimpleConfig::SimpleConfig()
{
}