diff --git a/src/OpenMesh/Core/Mesh/Handles.hh b/src/OpenMesh/Core/Mesh/Handles.hh index 9c54bcd2..29ff272f 100644 --- a/src/OpenMesh/Core/Mesh/Handles.hh +++ b/src/OpenMesh/Core/Mesh/Handles.hh @@ -75,15 +75,15 @@ public: void invalidate() { idx_ = -1; } bool operator==(const BaseHandle& _rhs) const { - return idx_ == _rhs.idx_; + return (this->idx_ == _rhs.idx_); } bool operator!=(const BaseHandle& _rhs) const { - return idx_ != _rhs.idx_; + return (this->idx_ != _rhs.idx_); } bool operator<(const BaseHandle& _rhs) const { - return idx_ < _rhs.idx_; + return (this->idx_ < _rhs.idx_); }