fix 3 args put for open mesh

This commit is contained in:
Sébastien Loriot 2020-03-24 11:02:57 +01:00
parent 179c89803b
commit bd3f47c16e
1 changed files with 4 additions and 0 deletions

View File

@ -423,7 +423,11 @@ template<typename K>
void
put(boost::vertex_point_t p, OPEN_MESH_CLASS& g,
typename boost::graph_traits< OPEN_MESH_CLASS >::vertex_descriptor vd,
#if defined(CGAL_USE_OM_POINTS)
const typename K::Point& point)
#else
const CGAL::Exact_predicates_inexact_constructions_kernel::Point_3& point)
#endif
{
put(get(p,g), vd, point);
}