mirror of
https://github.com/Z3Prover/z3
synced 2025-11-05 05:49:13 +00:00
add the "noexcept" keyword to value_score=(value_score&&) declaration
This commit is contained in:
parent
76c4287e50
commit
aad55de04b
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