Merge pull request #3725 from afabri/TDS_2-fix_Default_vertex_converter-GF

TDS_2: Fix Default_vertex_converter
This commit is contained in:
Laurent Rineau 2019-03-05 16:20:49 +01:00
commit 7ddef3d14e
1 changed files with 1 additions and 1 deletions

View File

@ -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 {}