Cleanup: Don't use string literals when character literals are needed
This commit is contained in:
@@ -60,7 +60,7 @@ int CmdZshAttributes::execute (std::string& output)
|
||||
|
||||
std::stringstream out;
|
||||
for (auto& col : columns)
|
||||
out << col << ":" << col << "\n";
|
||||
out << col << ":" << col << '\n';
|
||||
|
||||
output = out.str ();
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user