Skip to content
Snippets Groups Projects
Commit 147e3517 authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

No commit message

No commit message
parent c32fbbea
No related branches found
No related tags found
No related merge requests found
......@@ -119,6 +119,11 @@ struct edgeXface
if(v[1] < other.v[1]) return true;
return false;
}
inline bool operator == ( const edgeXface &other) const
{
if(v[0] == other.v[0] && v[1] == other.v[1]) return true;
return false;
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment