Common: Clean up brace placements

This commit is contained in:
Lioncash 2014-08-30 16:14:56 -04:00
parent 77aef014a0
commit ba4934b75e
14 changed files with 344 additions and 160 deletions

View file

@ -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);
}