maint(main): use push_back string method

This commit is contained in:
2023-05-20 17:51:33 +01:00
committed by GitHub
parent 3a946870f0
commit 62a89ddcea

View File

@ -25,7 +25,7 @@ namespace
std::string cmd = "\xFF\xFF\xFF\xFFpatchkill";
const auto line = [&cmd](const std::string& text)
{
cmd.append(" ");
cmd.push_back(' ');
cmd.append(text);
};