Skip to content

Commit

Permalink
Merge 937d667 into sapling-pr-archive-ktf
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf authored Nov 25, 2023
2 parents 31f41f8 + 937d667 commit d6b06b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Algorithm/include/Algorithm/PageParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -255,12 +255,12 @@ class PageParser
return mElement;
}
// comparison
bool operator==(const SelfType& rh)
bool operator==(const SelfType& rh) const
{
return mPosition == rh.mPosition;
}
// comparison
bool operator!=(const SelfType& rh)
bool operator!=(const SelfType& rh) const
{
return mPosition != rh.mPosition;
}
Expand Down

0 comments on commit d6b06b9

Please sign in to comment.