From 7bf1c7512a411d2f7f1a48d6bc59714022b07f6d Mon Sep 17 00:00:00 2001 From: Artemis Rosman <73006620+rozukke@users.noreply.github.com> Date: Fri, 30 Aug 2024 00:28:29 +1000 Subject: [PATCH] RELEASE --- src/mcpp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcpp.cpp b/src/mcpp.cpp index cacad722..13727627 100644 --- a/src/mcpp.cpp +++ b/src/mcpp.cpp @@ -11,7 +11,7 @@ using namespace mcpp; namespace mcpp { void splitCommaStringToInts(const std::string& str, std::vector& vec) { - std::stringstream ss(str); + std::stringstream ss(str); std::string item; while (std::getline(ss, item, ',')) { // Fixes flooring issue w/ negative coordinates