diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2012-02-28 00:27:16 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2012-02-28 00:27:16 -0600 |
| commit | 38823b63716b46ec00337f20127de43661deac8b (patch) | |
| tree | e6d8766ae74bad848327867b05d20bd08e11d9e0 /Source/Core/Common/Src/IniFile.cpp | |
| parent | f92d1e1e931db66d10db4cb2377bcb794dc898ee (diff) | |
Add comment here so people know what's up.
Diffstat (limited to 'Source/Core/Common/Src/IniFile.cpp')
| -rw-r--r-- | Source/Core/Common/Src/IniFile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Common/Src/IniFile.cpp b/Source/Core/Common/Src/IniFile.cpp index f51e8850d3..acad498106 100644 --- a/Source/Core/Common/Src/IniFile.cpp +++ b/Source/Core/Common/Src/IniFile.cpp @@ -459,6 +459,10 @@ bool IniFile::Save(const char* filename) return false; } + // Currently testing if dolphin community can handle the requirements of C++11 compilation + // If you get a compiler error on this line, your compiler is probably old. + // Update to g++ 4.4 or a recent version of clang (XCode 4.2 on OS X). + // If you don't want to update, complain in a google code issue, the dolphin forums or #dolphin-emu. for (auto iter = sections.begin(); iter != sections.end(); ++iter) { const Section& section = *iter; |
