aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--GasMeter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/GasMeter.h b/GasMeter.h
index 95593b56..6949c193 100644
--- a/GasMeter.h
+++ b/GasMeter.h
@@ -86,7 +86,7 @@ private:
inline std::ostream& operator<<(std::ostream& _str, GasMeter::GasConsumption const& _consumption)
{
if (_consumption.isInfinite)
- return _str << "inf";
+ return _str << "[???]";
else
return _str << std::dec << _consumption.value;
}