mirror of https://github.com/CGAL/cgal
add an extra overload to please MSVC
This commit is contained in:
parent
498492e770
commit
0beb1a8861
|
|
@ -999,7 +999,13 @@ public:
|
||||||
// Helping functions
|
// Helping functions
|
||||||
template <class TDS_src>
|
template <class TDS_src>
|
||||||
Vertex_handle copy_tds(const TDS_src & tds,
|
Vertex_handle copy_tds(const TDS_src & tds,
|
||||||
typename TDS_src::Vertex_handle vert = typename TDS_src::Vertex_handle() );
|
typename TDS_src::Vertex_handle vert);
|
||||||
|
|
||||||
|
template <class TDS_src>
|
||||||
|
Vertex_handle copy_tds(const TDS_src & tds)
|
||||||
|
{
|
||||||
|
return copy_tds(tds, typename TDS_src::Vertex_handle());
|
||||||
|
}
|
||||||
// returns the new vertex corresponding to vert in the new tds
|
// returns the new vertex corresponding to vert in the new tds
|
||||||
|
|
||||||
template <class TDS_src,class ConvertVertex,class ConvertCell>
|
template <class TDS_src,class ConvertVertex,class ConvertCell>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue