From e4caace6bb6213851b979cdd76f9f44ef6d9cd09 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 13 Apr 2023 09:38:09 -0400 Subject: Common/IniFile: Move interface into Common namespace Gets this out of the global namespace and into the Common namespace --- Source/Core/Common/IniFile.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Source/Core/Common/IniFile.cpp') diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index 41f1917fef..2aed1b805f 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -15,6 +15,8 @@ #include "Common/FileUtil.h" #include "Common/StringUtil.h" +namespace Common +{ void IniFile::ParseLine(std::string_view line, std::string* keyOut, std::string* valueOut) { if (line.empty() || line.front() == '#') @@ -369,3 +371,4 @@ bool IniFile::Save(const std::string& filename) return 0; } */ +} // namespace Common -- cgit v1.2.3