Fix "error: use of overloaded operator '=='"

... for `Arrangement_on_surface_2`, Boolean_operations_2`, and
`Minkowski_sum_2`.
This commit is contained in:
Laurent Rineau 2020-06-10 22:33:26 +02:00
parent 489e853a65
commit 1d3c8bbbc9
1 changed files with 2 additions and 0 deletions

View File

@ -262,6 +262,8 @@ public:
bool operator!=( std::nullptr_t p) const { return !(*this == p); } 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 It::operator==(i); }
bool operator!=( const Self& i) const { return !(*this == 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++() { Self& operator++() {
this->nt = (*this->nt).next(); this->nt = (*this->nt).next();