3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

add move constructor to mpf

This commit is contained in:
Nuno Lopes 2017-10-13 18:23:30 +01:00
parent d1c13f17b0
commit 468e0207f7
2 changed files with 6 additions and 7 deletions

View file

@ -40,12 +40,6 @@ mpf::mpf(unsigned _ebits, unsigned _sbits):
set(ebits, sbits);
}
mpf::mpf(mpf const & other) {
// It is safe if the mpz numbers are small.
// I need it for resize method in vector.
// UNREACHABLE();
}
mpf::~mpf() {
}