corr SplitStr

This commit is contained in:
dimxy
2019-04-09 12:48:41 +05:00
parent dee17205d2
commit e85fbb10c9

View File

@@ -406,7 +406,7 @@ void SplitStr(const std::string& strVal, std::vector<std::string> &outVals)
while (std::isspace(ss.peek()))
ss.ignore();
while (!ss.eofbit && !std::isspace(c = ss.get() && c != ','))
while (!ss.eofbit && !std::isspace(c = ss.get()) && c != ',')
str += c;
if (!str.empty())