summaryrefslogtreecommitdiff
path: root/src/main/command_executor.cpp
diff options
context:
space:
mode:
authorCristian Mattarei <cristian.mattarei@gmail.com>2017-01-08 19:00:09 -0800
committerCristian Mattarei <cristian.mattarei@gmail.com>2017-01-08 19:00:09 -0800
commitf5eff29054e3eb70ef0e04516b4bd7e49f28db79 (patch)
tree660d07973a7505e44279f2d6f5b6edd32cedc2b8 /src/main/command_executor.cpp
parentff498bb43b3d3785bdb894974678e65926de62ab (diff)
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
Diffstat (limited to 'src/main/command_executor.cpp')
-rw-r--r--src/main/command_executor.cpp4
1 files changed, 3 insertions, 1 deletions
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<bool>(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\"" ||
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback