Skip to content

Commit

Permalink
check for relationship type precedence #27203
Browse files Browse the repository at this point in the history
  • Loading branch information
oanaoana committed Aug 6, 2024
1 parent 3bcf266 commit f6262b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ bool
GhostBoundary::operator>=(const RelationshipManager & other) const
{
if (auto asoi = dynamic_cast<const GhostBoundary *>(&other))
if (_boundary_name == asoi->_boundary_name)
if (_boundary_name == asoi->_boundary_name && baseGreaterEqual(*asoi))
return true;
return false;
}
Expand Down

0 comments on commit f6262b0

Please sign in to comment.