diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-07 02:41:49 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-01-07 02:41:49 -0500 |
commit | 8cf95fce0cb233125334482149c2c9f4219da52b (patch) | |
tree | c0c2e267385363e0f87ad4c80d299c08d33a33a9 /settings.hpp | |
parent | 2d6c4cd50d0075c064641150dcf65e6b58d5bf36 (diff) | |
download | abaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.tar.gz abaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.zip |
improve build process, add github actions
Diffstat (limited to 'settings.hpp')
-rw-r--r-- | settings.hpp | 3 |
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()); } |