Skip to content

Commit

Permalink
Node comparison is now const for both nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jul 9, 2020
1 parent 53a63a9 commit abfa7e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Octree/include/CGAL/Octree/Node.h
Expand Up @@ -226,7 +226,7 @@ class Node {
* \param rhs
* \return
*/
bool operator==(Node &rhs) const {
bool operator==(const Node &rhs) const {

// TODO: Should I compare the values they contain
// if (m_value != rhs.m_value)
Expand Down

0 comments on commit abfa7e9

Please sign in to comment.