summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2020-09-08 11:51:23 -0700
committerGitHub <noreply@github.com>2020-09-08 11:51:23 -0700
commit2786ba1efc7d420b5eda5389edffe72b676de32b (patch)
tree8946a854d230f773fafc5715b7ca28dae6d1e836
parent7b36dc4ee0f4fa5c1d73b0f648c74b9736a5f626 (diff)
Fix printing of fp values. (#5041)
Fixes #5032
-rw-r--r--src/util/floatingpoint.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/floatingpoint.cpp b/src/util/floatingpoint.cpp
index 7403c340b..6c82d8210 100644
--- a/src/util/floatingpoint.cpp
+++ b/src/util/floatingpoint.cpp
@@ -993,6 +993,7 @@ std::string FloatingPoint::toString(bool printAsIndexed) const
str.append(" ");
}
}
+ str.append(")");
return str;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback