Skip to content

Commit

Permalink
RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
rozukke committed Aug 29, 2024
1 parent c1c74d6 commit 7bf1c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using namespace mcpp;
namespace mcpp {

void splitCommaStringToInts(const std::string& str, std::vector<int>& vec) {
std::stringstream ss(str);
std::stringstream ss(str);
std::string item;
while (std::getline(ss, item, ',')) {
// Fixes flooring issue w/ negative coordinates
Expand Down

0 comments on commit 7bf1c75

Please sign in to comment.