mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
adding explicit assignment for auto-generated function.
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0aa12b9423
commit
b63754e362
|
@ -55,6 +55,10 @@ class sls_tracker {
|
||||||
this->~value_score();
|
this->~value_score();
|
||||||
new (this) value_score(std::move(other));
|
new (this) value_score(std::move(other));
|
||||||
}
|
}
|
||||||
|
value_score& operator=(value_score& other) {
|
||||||
|
UNREACHABLE();
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
unsynch_mpz_manager * m;
|
unsynch_mpz_manager * m;
|
||||||
mpz value;
|
mpz value;
|
||||||
double score;
|
double score;
|
||||||
|
|
Loading…
Reference in a new issue