Use CGAL_USE

This commit is contained in:
Andreas Fabri 2016-01-21 09:24:15 +01:00
parent 3ef9aea5eb
commit 4f33354ace
2 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,7 @@ public:
bool operator==( Nullptr_t p) const {
CGAL_assertion( p == 0);
CGAL_USE(p);
return ( nt == 0); //###//
}
bool operator!=( Nullptr_t p) const {

View File

@ -63,6 +63,7 @@ public:
bool operator==( Nullptr_t p) const {
CGAL_assertion( p == 0);
CGAL_USE(p);
return ( nt == 0);
}
bool operator!=( Nullptr_t p) const { return !(*this == p); }