maint(main): use push_back string method

This commit is contained in:
6arelyFuture 2023-05-20 17:51:33 +01:00 committed by GitHub
parent 3a946870f0
commit 62a89ddcea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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