mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 09:48:05 +00:00
fix compiler warnings
This commit is contained in:
parent
a2e0646eed
commit
8ad480ab59
6 changed files with 80 additions and 97 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue