From bc457b086aa7cbb917a28fbf8dacea38cde51431 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Thu, 9 Jun 2016 13:05:32 +0200 Subject: [PATCH] Fix a documentation bug `boost::get(vertex_point, graph)` may not compile, if the graph is not a CGAL face graph. Example: when it is an OpenMesh, in the `OpenMesh` namespace. --- AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h b/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h index 4ffe06cd66c..364f0c734f1 100644 --- a/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h +++ b/AABB_tree/include/CGAL/AABB_face_graph_triangle_primitive.h @@ -118,7 +118,7 @@ public: \tparam Iterator an input iterator with `Id` as value type. Constructs a primitive. If `VertexPointPMap` is the default of the class, an additional constructor - is available with `vppm` set to `boost::get(vertex_point, graph)`. + is available with `vppm` set to `get(vertex_point, graph)`. */ template AABB_face_graph_triangle_primitive(Iterator it, const FaceGraph& graph, VertexPointPMap_ vppm) @@ -130,7 +130,7 @@ public: /*! Constructs a primitive. If `VertexPointPMap` is the default of the class, an additional constructor - is available with `vppm` set to `boost::get(vertex_point, graph)`. + is available with `vppm` set to `get(vertex_point, graph)`. */ AABB_face_graph_triangle_primitive(Id id, const FaceGraph& graph, VertexPointPMap_ vppm) : Base( Id_(id),