diff options
| author | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-08-13 02:41:15 -0500 |
|---|---|---|
| committer | Ryan Houdek <Sonicadvance1@gmail.com> | 2014-08-13 02:41:15 -0500 |
| commit | f2a1dd91fe7b94580534b4299803ef9e6cb60d04 (patch) | |
| tree | 8f94445a0ae3a33f8520a207053b0f789abfcf71 /Source/Core/Common/IniFile.cpp | |
| parent | e4e44909d5ffa60abf81d4685a156654c463bbf9 (diff) | |
| parent | 287758f15d07cb6e0c19d861d8134124361d2d30 (diff) | |
Merge pull request #693 from Sonicadvance1/PP-shaders-improvement
Improved system for post processing shaders.
Diffstat (limited to 'Source/Core/Common/IniFile.cpp')
| -rw-r--r-- | Source/Core/Common/IniFile.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index da9d99e250..f3ea5751ba 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -19,9 +19,7 @@ #include "Common/IniFile.h" #include "Common/StringUtil.h" -namespace { - -void ParseLine(const std::string& line, std::string* keyOut, std::string* valueOut) +void IniFile::ParseLine(const std::string& line, std::string* keyOut, std::string* valueOut) { if (line[0] == '#') return; @@ -40,8 +38,6 @@ void ParseLine(const std::string& line, std::string* keyOut, std::string* valueO } } -} - const std::string& IniFile::NULL_STRING = ""; void IniFile::Section::Set(const std::string& key, const std::string& newValue) |
