diff options
| author | Leo Lam <leolino.lam@gmail.com> | 2017-06-15 23:28:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-15 23:28:36 +0200 |
| commit | 8f460a1cda1a4d4208c4da9e01bf775f5f704498 (patch) | |
| tree | 3ceea68574665cde97e5d2276bd9c320ceb579ad /Source/Core/Common/IniFile.cpp | |
| parent | 9bc1b652fed28caac9042c42fce33f89363a88d3 (diff) | |
| parent | cf94ce63051458a2d8ac8b340a1020b863f1a6dd (diff) | |
Merge pull request #5611 from JosJuice/reorganize-file-namespace
Reorganize File namespace
Diffstat (limited to 'Source/Core/Common/IniFile.cpp')
| -rw-r--r-- | Source/Core/Common/IniFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index 1543d0f96f..5c38dd6a19 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -401,7 +401,7 @@ bool IniFile::Load(const std::string& filename, bool keep_current_data) // Open file std::ifstream in; - OpenFStream(in, filename, std::ios::in); + File::OpenFStream(in, filename, std::ios::in); if (in.fail()) return false; @@ -474,7 +474,7 @@ bool IniFile::Save(const std::string& filename) { std::ofstream out; std::string temp = File::GetTempFilenameForAtomicWrite(filename); - OpenFStream(out, temp, std::ios::out); + File::OpenFStream(out, temp, std::ios::out); if (out.fail()) { |
