From 1dcddd1f6c4bb138f4f66012656cdf71c39d5633 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Fri, 22 Sep 2017 13:07:01 +0200 Subject: [PATCH] Fix regression introduced by a1549544d49fdbf4b118afe0031a882ff65ac212 The next version must be 1.10 instead of 1.9.3 in order to re-enable the check update on all v1.9 versions. --- src/blupi.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blupi.cxx b/src/blupi.cxx index aa1069c..950fc8a 100644 --- a/src/blupi.cxx +++ b/src/blupi.cxx @@ -94,7 +94,7 @@ split (const std::string & s, char delim, Out result) std::stringstream ss; ss.str (s); std::string item; - while (std::getline (ss, item, delim).good ()) + while (std::getline (ss, item, delim)) *(result++) = item; }