summaryrefslogtreecommitdiff
path: root/settings.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'settings.hpp')
-rw-r--r--settings.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/settings.hpp b/settings.hpp
index 7bb022e..09aeec2 100644
--- a/settings.hpp
+++ b/settings.hpp
@@ -28,8 +28,7 @@ public:
m_ini.SaveFile(m_filename.c_str());
}
- template<>
- void SetSetting<std::string>(std::string section, std::string key, std::string value) {
+ void SetSetting(std::string section, std::string key, std::string value) {
m_ini.SetValue(section.c_str(), key.c_str(), value.c_str());
m_ini.SaveFile(m_filename.c_str());
}