mirror of
https://github.com/Z3Prover/z3
synced 2025-10-23 07:54:34 +00:00
add the "noexcept" keyword to value_score=(value_score&&) declaration
This commit is contained in:
parent
f2e7abbdc1
commit
06ed96dbda
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class sls_tracker {
|
||||||
touched = other.touched;
|
touched = other.touched;
|
||||||
}
|
}
|
||||||
~value_score() { if (m) m->del(value); }
|
~value_score() { if (m) m->del(value); }
|
||||||
value_score& operator=(value_score&&) = default;
|
value_score& operator=(value_score&&) noexcept = default;
|
||||||
value_score &operator=(const value_score &other) {
|
value_score &operator=(const value_score &other) {
|
||||||
if (this != &other) {
|
if (this != &other) {
|
||||||
if (m)
|
if (m)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue