Skip to content

Commit

Permalink
update signature of operator==
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <[email protected]>
  • Loading branch information
NikolajBjorner committed Sep 26, 2024
1 parent 649c36a commit 3df7299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/muz/rel/dl_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ namespace datalog {
*/
class signature_base : public signature_base_base {
public:
bool operator==(const signature & o) const {
bool operator==(const signature_base & o) const {
unsigned n=signature_base_base::size();
if (n!=o.size()) {
return false;
Expand Down

0 comments on commit 3df7299

Please sign in to comment.