From 345b608d64814224a1b9dff57d7deb6a855a7d34 Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Thu, 4 Sep 2014 03:29:49 -0400 Subject: Change IniFile::Section::Set() with default value to use a template. --- Source/Core/Common/IniFile.cpp | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'Source/Core/Common/IniFile.cpp') 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& newValues) { std::string temp; -- cgit v1.2.3