From eaffe696ca22a6ded7fe24999ba51214094a683f Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 29 Nov 2017 11:06:34 +0000 Subject: [PATCH] cleanup of code --- BGL/doc/BGL/CGAL/boost/graph/properties.h | 2 +- Property_map/include/CGAL/Dynamic_property_map.h | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/BGL/doc/BGL/CGAL/boost/graph/properties.h b/BGL/doc/BGL/CGAL/boost/graph/properties.h index 9e0ddd53bac..8791ac28ae9 100644 --- a/BGL/doc/BGL/CGAL/boost/graph/properties.h +++ b/BGL/doc/BGL/CGAL/boost/graph/properties.h @@ -43,7 +43,7 @@ namespace CGAL { /// @{ - /// \ingroup PkgBGLPropertiesDynamic +/// \ingroup PkgBGLPropertiesDynamic /// Dynamic vertex property tag /// \tparam T the value type of the vertex property template diff --git a/Property_map/include/CGAL/Dynamic_property_map.h b/Property_map/include/CGAL/Dynamic_property_map.h index 63789db09d8..df2427d86ea 100644 --- a/Property_map/include/CGAL/Dynamic_property_map.h +++ b/Property_map/include/CGAL/Dynamic_property_map.h @@ -135,7 +135,6 @@ struct dynamic_vertex_property_t dynamic_vertex_property_t(const T& t = T()) : t(t) {} - std::string s; T t; }; @@ -146,7 +145,6 @@ struct dynamic_halfedge_property_t dynamic_halfedge_property_t(const T& t = T()) : t(t) {} - std::string s; T t; }; @@ -156,7 +154,6 @@ struct dynamic_edge_property_t dynamic_edge_property_t(const T& t = T()) : t(t) {} - std::string s; T t; }; @@ -167,7 +164,6 @@ struct dynamic_face_property_t dynamic_face_property_t(const T& t = T()) : t(t) {} - std::string s; T t; };