mirror of https://github.com/CGAL/cgal
Fix "error: use of overloaded operator '=='"
... for `Arrangement_on_surface_2`, Boolean_operations_2`, and `Minkowski_sum_2`.
This commit is contained in:
parent
489e853a65
commit
1d3c8bbbc9
|
|
@ -262,6 +262,8 @@ public:
|
|||
bool operator!=( std::nullptr_t p) const { return !(*this == p); }
|
||||
bool operator==( const Self& i) const { return It::operator==(i); }
|
||||
bool operator!=( const Self& i) const { return !(*this == i); }
|
||||
bool operator==( const It& i) const { return It::operator==(i); }
|
||||
bool operator!=( const It& i) const { return !(*this == i); }
|
||||
|
||||
Self& operator++() {
|
||||
this->nt = (*this->nt).next();
|
||||
|
|
|
|||
Loading…
Reference in New Issue