From f5eff29054e3eb70ef0e04516b4bd7e49f28db79 Mon Sep 17 00:00:00 2001 From: Cristian Mattarei Date: Sun, 8 Jan 2017 19:00:09 -0800 Subject: [PATCH] With reference to Bug 679, this commit integrates part of the patch proposed, and it fixes the correct float parsing of an std::istringstream. The compilation issue in Bug 679 does not apply anymore with gcc6.3.1 --- src/main/command_executor.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/command_executor.cpp b/src/main/command_executor.cpp index 64025fc04..ebb57da74 100644 --- a/src/main/command_executor.cpp +++ b/src/main/command_executor.cpp @@ -254,7 +254,9 @@ void CommandExecutor::printStatsFilterZeros(std::ostream& out, std::getline(iss, statValue, '\n'); double curFloat; - bool isFloat = static_cast(std::istringstream(statValue) >> curFloat); + std::istringstream iss_stat_value (statValue); + iss_stat_value >> curFloat; + bool isFloat = iss_stat_value.good(); if( (isFloat && curFloat == 0) || statValue == " \"0\"" || -- 2.30.2