diff --git a/BGL/include/CGAL/boost/graph/named_params_helper.h b/BGL/include/CGAL/boost/graph/named_params_helper.h index f5b8c44df82..1e0efd6faa6 100644 --- a/BGL/include/CGAL/boost/graph/named_params_helper.h +++ b/BGL/include/CGAL/boost/graph/named_params_helper.h @@ -141,14 +141,14 @@ struct GetVertexPointMap_impl template static const_type - get_const_map(const NamedParameters& np, const PolygonMesh& pm) + get_const_map(const NamedParameters& /* np */, const PolygonMesh& pm) { return get_const_property_map(boost::vertex_point, pm); } template static type - get_map(const NamedParameters& np, PolygonMesh& pm) + get_map(const NamedParameters& /* np */, PolygonMesh& pm) { return get_property_map(boost::vertex_point, pm); }