Fix printing of fp values. (#5041)
authorMathias Preiner <mathias.preiner@gmail.com>
Tue, 8 Sep 2020 18:51:23 +0000 (11:51 -0700)
committerGitHub <noreply@github.com>
Tue, 8 Sep 2020 18:51:23 +0000 (11:51 -0700)
Fixes #5032

src/util/floatingpoint.cpp

index 7403c340b41e5af287b2cf75daff83d95d6b8c16..6c82d8210125084b7220631107ff227b6316de64 100644 (file)
@@ -993,6 +993,7 @@ std::string FloatingPoint::toString(bool printAsIndexed) const
       str.append(" ");
     }
   }
+  str.append(")");
   return str;
 }