cleanup of code

This commit is contained in:
Andreas Fabri 2017-11-29 11:06:34 +00:00
parent 7db8f0c7b9
commit eaffe696ca
2 changed files with 1 additions and 5 deletions

View File

@ -43,7 +43,7 @@ namespace CGAL {
/// @{ /// @{
/// \ingroup PkgBGLPropertiesDynamic /// \ingroup PkgBGLPropertiesDynamic
/// Dynamic vertex property tag /// Dynamic vertex property tag
/// \tparam T the value type of the vertex property /// \tparam T the value type of the vertex property
template <typename T> template <typename T>

View File

@ -135,7 +135,6 @@ struct dynamic_vertex_property_t
dynamic_vertex_property_t(const T& t = T()) dynamic_vertex_property_t(const T& t = T())
: t(t) : t(t)
{} {}
std::string s;
T t; T t;
}; };
@ -146,7 +145,6 @@ struct dynamic_halfedge_property_t
dynamic_halfedge_property_t(const T& t = T()) dynamic_halfedge_property_t(const T& t = T())
: t(t) : t(t)
{} {}
std::string s;
T t; T t;
}; };
@ -156,7 +154,6 @@ struct dynamic_edge_property_t
dynamic_edge_property_t(const T& t = T()) dynamic_edge_property_t(const T& t = T())
: t(t) : t(t)
{} {}
std::string s;
T t; T t;
}; };
@ -167,7 +164,6 @@ struct dynamic_face_property_t
dynamic_face_property_t(const T& t = T()) dynamic_face_property_t(const T& t = T())
: t(t) : t(t)
{} {}
std::string s;
T t; T t;
}; };