SimpleConfig: Add missing definition.
This commit is contained in:
parent
1bc8a9ad82
commit
f76d524999
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.22)
|
||||
project(scsl LANGUAGES CXX
|
||||
VERSION 1.1.0
|
||||
VERSION 1.1.1
|
||||
DESCRIPTION "Shimmering Clarity Standard Library")
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
|
|
@ -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()
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue