summaryrefslogtreecommitdiff
path: root/Source/Core/Common/SettingsHandler.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-08-30 16:14:56 -0400
committerLioncash <mathew1800@gmail.com>2014-08-30 18:06:35 -0400
commitba4934b75eb13cc04a54efd54a9d6f286d255083 (patch)
treed6cf1cc67a447e8b68aed719f3161119f8a45258 /Source/Core/Common/SettingsHandler.cpp
parent77aef014a0352d819e8ea63bafb6262b9af485cb (diff)
Common: Clean up brace placements
Diffstat (limited to 'Source/Core/Common/SettingsHandler.cpp')
-rw-r--r--Source/Core/Common/SettingsHandler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/Common/SettingsHandler.cpp b/Source/Core/Common/SettingsHandler.cpp
index 46acff321d..4a6897153c 100644
--- a/Source/Core/Common/SettingsHandler.cpp
+++ b/Source/Core/Common/SettingsHandler.cpp
@@ -84,13 +84,15 @@ void SettingsHandler::Reset()
void SettingsHandler::AddSetting(const std::string& key, const std::string& value)
{
- for (const char& c : key) {
+ for (const char& c : key)
+ {
WriteByte(c);
}
WriteByte('=');
- for (const char& c : value) {
+ for (const char& c : value)
+ {
WriteByte(c);
}