Cleanup: Don't use string literals when character literals are needed

This commit is contained in:
Paul Beckingham 2016-10-14 22:27:34 -04:00
parent 99a7cfceac
commit 35e518cbc2
58 changed files with 372 additions and 374 deletions

View file

@ -119,9 +119,9 @@ int CmdColumns::execute (std::string& output)
output = optionalBlankLine ()
+ formats.render ()
+ "\n"
+ '\n'
+ STRING_CMD_COLUMNS_NOTE
+ "\n";
+ '\n';
return 0;
}
@ -154,7 +154,7 @@ int CmdCompletionColumns::execute (std::string& output)
// Render only the column names.
for (auto& name : names)
output += name + "\n";
output += name + '\n';
return 0;
}