diff --git a/BGL/include/CGAL/boost/graph/Face_filtered_graph.h b/BGL/include/CGAL/boost/graph/Face_filtered_graph.h index 982adf381bc..5bdc06c873b 100644 --- a/BGL/include/CGAL/boost/graph/Face_filtered_graph.h +++ b/BGL/include/CGAL/boost/graph/Face_filtered_graph.h @@ -1273,14 +1273,14 @@ CGAL_FILTERED_FACE_GRAPH_DYNAMIC_PMAP_SPECIALIZATION(dynamic_face_property_t) //specializations for indices template -struct property_map, CGAL::face_index_t> +struct property_map, boost::face_index_t> { typedef CGAL::Face_filtered_graph FFG; typedef typename FFG::FIM FIM; - typedef typename boost::property_traits::value_type Face_index; - typedef typename CGAL::dynamic_face_property_t Face_index_dtag; - typedef typename boost::property_map::type type; + typedef typename boost::property_traits::value_type Index; + typedef typename CGAL::dynamic_face_property_t Index_dtag; + typedef typename boost::property_map::type type; typedef typename CGAL::Property_map_binder, boost typedef CGAL::Face_filtered_graph FFG; typedef typename FFG::VIM VIM; - typedef typename boost::property_traits::value_type Vertex_index; - typedef typename CGAL::dynamic_vertex_property_t Vertex_index_dtag; - typedef typename boost::property_map::type type; + typedef typename boost::property_traits::value_type Index; + typedef typename CGAL::dynamic_vertex_property_t Index_dtag; + typedef typename boost::property_map::type type; typedef typename CGAL::Property_map_binder, boost }; template -struct property_map, CGAL::halfedge_index_t> +struct property_map, boost::halfedge_index_t> { typedef CGAL::Face_filtered_graph FFG; typedef typename FFG::HIM HIM; - typedef typename boost::property_traits::value_type Halfedge_index; - typedef typename CGAL::dynamic_halfedge_property_t Halfedge_index_dtag; - typedef typename boost::property_map::type type; + typedef typename boost::property_traits::value_type Index; + typedef typename CGAL::dynamic_halfedge_property_t Index_dtag; + typedef typename boost::property_map::type type; typedef typename CGAL::Property_map_binder -typename boost::property_map, CGAL::face_index_t >::const_type -get(CGAL::face_index_t, const Face_filtered_graph& w) +typename boost::property_map, boost::face_index_t >::const_type +get(boost::face_index_t, const Face_filtered_graph& w) { return w.get_face_index_map(); } @@ -1337,19 +1337,19 @@ get(boost::vertex_index_t, const Face_filtered_graph } template -typename boost::property_map, CGAL::halfedge_index_t >::const_type -get(CGAL::halfedge_index_t, const Face_filtered_graph& w) +typename boost::property_map, boost::halfedge_index_t >::const_type +get(boost::halfedge_index_t, const Face_filtered_graph& w) { return w.get_halfedge_index_map(); } // non-const (dynamic pmap) template -typename boost::property_map, CGAL::face_index_t >::type -get(CGAL::face_index_t, Face_filtered_graph& w) +typename boost::property_map, boost::face_index_t >::type +get(boost::face_index_t, Face_filtered_graph& w) { typedef CGAL::Face_filtered_graph FFG; - typedef typename boost::property_map::type result_type; + typedef typename boost::property_map::type result_type; typedef typename boost::property_traits::value_type Index; typedef typename CGAL::dynamic_face_property_t Index_dtag; @@ -1369,11 +1369,11 @@ get(boost::vertex_index_t, Face_filtered_graph& w) } template -typename boost::property_map, CGAL::halfedge_index_t >::type -get(CGAL::halfedge_index_t, Face_filtered_graph& w) +typename boost::property_map, boost::halfedge_index_t >::type +get(boost::halfedge_index_t, Face_filtered_graph& w) { typedef CGAL::Face_filtered_graph FFG; - typedef typename boost::property_map::type result_type; + typedef typename boost::property_map::type result_type; typedef typename boost::property_traits::value_type Index; typedef typename CGAL::dynamic_halfedge_property_t Index_dtag;