Skip to content

Commit 8a4fc26

Browse files
Use read() for value_sett::object_mapt equality
The explicit definition of object_mapt equality was removed recently in pull request #4694 but it seems necessary when compiling with clang which would complain about it not being defined. Should fix #4699
1 parent 7734b53 commit 8a4fc26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pointer-analysis/value_set.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class value_sett
224224
return
225225
identifier==other.identifier &&
226226
suffix==other.suffix &&
227-
object_map==other.object_map;
227+
object_map.read()==other.object_map.read();
228228
}
229229
bool operator!=(const entryt &other) const
230230
{

0 commit comments

Comments
 (0)