Skip to content

Commit 06ed96d

Browse files
committed
add the "noexcept" keyword to value_score=(value_score&&) declaration
1 parent f2e7abb commit 06ed96d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast/sls/sls_bv_tracker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class sls_tracker {
5555
touched = other.touched;
5656
}
5757
~value_score() { if (m) m->del(value); }
58-
value_score& operator=(value_score&&) = default;
58+
value_score& operator=(value_score&&) noexcept = default;
5959
value_score &operator=(const value_score &other) {
6060
if (this != &other) {
6161
if (m)

0 commit comments

Comments
 (0)