mirror of https://github.com/CGAL/cgal
Merge pull request #3725 from afabri/TDS_2-fix_Default_vertex_converter-GF
TDS_2: Fix Default_vertex_converter
This commit is contained in:
commit
7ddef3d14e
|
|
@ -2019,7 +2019,7 @@ namespace internal { namespace TDS_2{
|
||||||
struct Default_vertex_converter
|
struct Default_vertex_converter
|
||||||
{
|
{
|
||||||
Vertex_tgt operator()(const Vertex_src& src) const {
|
Vertex_tgt operator()(const Vertex_src& src) const {
|
||||||
return Vertex_src( src.point() );
|
return Vertex_tgt( src.point() );
|
||||||
}
|
}
|
||||||
|
|
||||||
void operator()(const Vertex_src&,Vertex_tgt&) const {}
|
void operator()(const Vertex_src&,Vertex_tgt&) const {}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue