mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-09 18:50:39 +02:00
Cleanup: Don't use string literals when character literals are needed
This commit is contained in:
parent
5403675100
commit
95f4989f77
58 changed files with 372 additions and 374 deletions
|
@ -53,7 +53,7 @@ int CmdCompletionAliases::execute (std::string& output)
|
|||
{
|
||||
for (auto& alias : context.config)
|
||||
if (alias.first.substr (0, 6) == "alias.")
|
||||
output += alias.first.substr (6) + "\n";
|
||||
output += alias.first.substr (6) + '\n';
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue