Update Convex_hull_3/include/CGAL/convexity_check_3.h

Co-authored-by: Sebastien Loriot <sloriot.ml@gmail.com>
This commit is contained in:
Andreas Fabri 2020-11-12 10:56:40 +01:00 committed by GitHub
parent b54b62fcc4
commit df61ad9367
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ bool CGAL_is_strongly_convex_3(const Polyhedron& P, Point_3<R>*)
template<class Polyhedron>
bool is_strongly_convex_3(const Polyhedron& P)
{
typedef typename boost::property_map<Polyhedron, vertex_point_t>::type Ppmap;
typedef typename boost::property_map<Polyhedron, vertex_point_t>::const_type Ppmap;
typedef typename boost::property_traits<Ppmap>::value_type Point_3;
return CGAL_is_strongly_convex_3(P, reinterpret_cast<Point_3*>(0));