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