diff --git a/src/util.cpp b/src/util.cpp index cca39ca38..ebc6dbccb 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -404,10 +404,7 @@ void SplitStr(const std::string& strVal, std::vector outVals) while ( ss >> str ) { - //outVals[numVals] = i; outVals.push_back(str); - numVals += 1; - while ( ss.peek() == ' ' ) ss.ignore(); if ( ss.peek() == ',' )