From 62a89ddceafc19dd4b61c4e275d9e7c5fa6dfd18 Mon Sep 17 00:00:00 2001 From: Edo Date: Sat, 20 May 2023 17:51:33 +0100 Subject: [PATCH] maint(main): use push_back string method --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 0e526a9..b31eb08 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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); };