jl777 5 years ago
parent
commit
7d4e16646e
  1. 3
      src/util.cpp

3
src/util.cpp

@ -404,10 +404,7 @@ void SplitStr(const std::string& strVal, std::vector<std::string> outVals)
while ( ss >> str )
{
//outVals[numVals] = i;
outVals.push_back(str);
numVals += 1;
while ( ss.peek() == ' ' )
ss.ignore();
if ( ss.peek() == ',' )

Loading…
Cancel
Save