From e85fbb10c9d39e7b8b96afd80227979d1c7c3f62 Mon Sep 17 00:00:00 2001 From: dimxy Date: Tue, 9 Apr 2019 12:48:41 +0500 Subject: [PATCH] corr SplitStr --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index e1d37b4a9..163e4aad3 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 (!ss.eofbit && !std::isspace(c = ss.get() && c != ',')) + while (!ss.eofbit && !std::isspace(c = ss.get()) && c != ',') str += c; if (!str.empty())