3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

adding euf

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-08-31 14:36:16 -07:00
parent 314bd9277b
commit 4d41db3028
26 changed files with 353 additions and 152 deletions

View file

@ -107,7 +107,7 @@ public:
}
mpz& operator=(mpz const& other) = delete;
mpz& operator=(mpz &&other) {
mpz& operator=(mpz &&other) noexcept {
swap(other);
return *this;
}