This commit is contained in:
jl777
2019-04-02 23:53:14 -11:00
parent f8b7e0480f
commit 2c272b175d

View File

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