Fix warning

This commit is contained in:
iyaz 2013-07-10 14:23:34 +03:00
parent e75a035e92
commit e8a2ec74b6
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ public:
const std::size_t& i0 = polygons[index][j];
const std::size_t& i1 = polygons[index][ j+1 < size ? j+1: 0];
CGAL_assertion_code(const bool r = )
edges[std::make_pair(i0, i1)].erase(index);
edges[std::make_pair(i0, i1)].erase(index) != 0;
CGAL_assertion(r);
}
inverse_orientation(index);