summaryrefslogtreecommitdiff
path: root/Source/Core/Common/IniFile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/IniFile.cpp')
-rw-r--r--Source/Core/Common/IniFile.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp
index f3ea5751ba..dda5e1ff0e 100644
--- a/Source/Core/Common/IniFile.cpp
+++ b/Source/Core/Common/IniFile.cpp
@@ -60,30 +60,6 @@ void IniFile::Section::Set(const std::string& key, const std::string& newValue,
Delete(key);
}
-void IniFile::Section::Set(const std::string& key, const float newValue, const float defaultValue)
-{
- if (newValue != defaultValue)
- Set(key, newValue);
- else
- Delete(key);
-}
-
-void IniFile::Section::Set(const std::string& key, int newValue, int defaultValue)
-{
- if (newValue != defaultValue)
- Set(key, newValue);
- else
- Delete(key);
-}
-
-void IniFile::Section::Set(const std::string& key, bool newValue, bool defaultValue)
-{
- if (newValue != defaultValue)
- Set(key, newValue);
- else
- Delete(key);
-}
-
void IniFile::Section::Set(const std::string& key, const std::vector<std::string>& newValues)
{
std::string temp;