From 856ef3471901e288e72056a2798065c42be73a51 Mon Sep 17 00:00:00 2001 From: Kampfkarren Date: Thu, 28 Jul 2022 17:29:54 -0700 Subject: [PATCH] string.append --- Compiler/src/Compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compiler/src/Compiler.cpp b/Compiler/src/Compiler.cpp index 8784d35e..055a5e32 100644 --- a/Compiler/src/Compiler.cpp +++ b/Compiler/src/Compiler.cpp @@ -1500,7 +1500,7 @@ struct Compiler } } else - formatString += std::string(string.data, string.size); + formatString.append(string.data, string.size); stringsLeft--;