Skip to content

Commit 73abef8

Browse files
Define equality of value_sett::object_mapt
This was removed recently in pull request diffblue#4694 but it seems necessary when compiling with clang which would complain about it not being defined.
1 parent 7734b53 commit 73abef8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/pointer-analysis/value_set.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,4 +547,10 @@ class value_sett
547547
}
548548
};
549549

550+
bool operator==(
551+
const value_sett::object_mapt &map1, const value_sett::object_mapt &map2)
552+
{
553+
return map1.read() == map2.read();
554+
}
555+
550556
#endif // CPROVER_POINTER_ANALYSIS_VALUE_SET_H

0 commit comments

Comments
 (0)