Skip to content

Commit cdd8e6d

Browse files
author
Daniel Kroening
committed
value_sett cannot have default copy operator
It uses classes that don't have a default copy operator. This change is required for compilation with clang 8.
1 parent 8384ce3 commit cdd8e6d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/pointer-analysis/value_set.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ class value_sett
5757

5858
value_sett(const value_sett &other) = default;
5959

60+
value_sett &operator=(const value_sett &other) = delete;
61+
6062
value_sett &operator=(value_sett &&other)
6163
{
6264
values = std::move(other.values);

0 commit comments

Comments
 (0)