3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-10 09:48:05 +00:00

fix compiler warnings

This commit is contained in:
Nuno Lopes 2022-10-12 09:43:50 +01:00
parent a2e0646eed
commit 8ad480ab59
6 changed files with 80 additions and 97 deletions

View file

@ -49,7 +49,6 @@ public:
mpf();
mpf(unsigned ebits, unsigned sbits);
mpf(mpf &&) = default;
~mpf();
mpf & operator=(mpf const & other) = delete;
unsigned get_ebits() const { return ebits; }
unsigned get_sbits() const { return sbits; }
@ -64,7 +63,6 @@ public:
typedef mpf numeral;
mpf_manager();
~mpf_manager();
void reset(mpf & o, unsigned ebits, unsigned sbits) { set(o, ebits, sbits, 0); }
void set(mpf & o, unsigned ebits, unsigned sbits, int value);