mirror of https://github.com/CGAL/cgal
cleanup of code
This commit is contained in:
parent
7db8f0c7b9
commit
eaffe696ca
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue