diff --git a/src/util/mpf.cpp b/src/util/mpf.cpp index 405f34c9d..e3f35538e 100644 --- a/src/util/mpf.cpp +++ b/src/util/mpf.cpp @@ -1174,7 +1174,7 @@ std::string mpf_manager::to_string(mpf const & x) { if (is_nan(x)) res = "NaN"; else { - res = sgn(x) ? "-" : "+"; + res = sgn(x) ? "-" : ""; if (is_inf(x)) res += "INF";