diff --git a/include/Core/ConfigFile.h b/include/Core/ConfigFile.h index 90e2e16..dd91578 100755 --- a/include/Core/ConfigFile.h +++ b/include/Core/ConfigFile.h @@ -19,8 +19,8 @@ private: ConfigFile(std::string path); public: - template - T GetValue(std::string key) + template + T GetValue(std::string key, T defaultValue) { return m_ptree.get(key, defaultValue); }