diff --git a/src/runtime/mpz.cpp b/src/runtime/mpz.cpp index 174b12c11263..62bd0ab7bf7a 100644 --- a/src/runtime/mpz.cpp +++ b/src/runtime/mpz.cpp @@ -304,7 +304,7 @@ void display(std::ostream & out, __mpz_struct const * v) { mpz_get_str(buffer, 10, v); out << buffer; } else { - std::unique_ptr buffer(new char[sz]); + std::unique_ptr buffer(new char[sz]); mpz_get_str(buffer.get(), 10, v); out << buffer.get(); }