mirror of https://github.com/CGAL/cgal
Resolve ambiguous call to operator== by overloading it with base type
This commit is contained in:
parent
c11d6316b1
commit
4e4a93de37
|
|
@ -321,6 +321,7 @@ public:
|
|||
return It::operator==( It(nullptr));
|
||||
}
|
||||
bool operator!=( std::nullptr_t p) const { return !(*this == p); }
|
||||
bool operator==( const It& 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); }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue