From 124983720d06ecdf194d7cffb2feea5097021af5 Mon Sep 17 00:00:00 2001 From: dimxy Date: Tue, 9 Apr 2019 13:33:28 +0500 Subject: [PATCH] corr SplitStr c --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index fe28acf75..70f638f93 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -406,7 +406,7 @@ void SplitStr(const std::string& strVal, std::vector &outVals) while (std::isspace(ss.peek())) ss.ignore(); - while ((c = ss.get()) != EOF && !std::isspace(c = ss.get()) && c != ',') + while ((c = ss.get()) != EOF && !std::isspace(c) && c != ',') str += c; if (!str.empty())