diff --git a/Combinatorial_map/include/CGAL/Combinatorial_map.h b/Combinatorial_map/include/CGAL/Combinatorial_map.h index 73758525679..2ef0e51feb7 100644 --- a/Combinatorial_map/include/CGAL/Combinatorial_map.h +++ b/Combinatorial_map/include/CGAL/Combinatorial_map.h @@ -289,7 +289,7 @@ namespace CGAL { CGAL::cpp11::tuple<> converters; Default_converter_dart_info dartinfoconverter; Default_converter_cmap_0attributes_with_point pointconverter; - return copy(amap, converters, dartinfoconverter, pointconverter); + copy(amap, converters, dartinfoconverter, pointconverter); } template @@ -297,7 +297,7 @@ namespace CGAL { { Default_converter_cmap_0attributes_with_point pointconverter; Default_converter_dart_info dartinfoconverter; - return copy(amap, converters, dartinfoconverter, pointconverter); + copy(amap, converters, dartinfoconverter, pointconverter); } template @@ -305,7 +305,7 @@ namespace CGAL { const DartInfoConverter& dartinfoconverter) { Default_converter_cmap_0attributes_with_point pointconverter; - return copy(amap, converters, dartinfoconverter, pointconverter); + copy(amap, converters, dartinfoconverter, pointconverter); } // Copy constructor from a map having exactly the same type. diff --git a/Generalized_map/include/CGAL/Generalized_map.h b/Generalized_map/include/CGAL/Generalized_map.h index fe329a32187..36b64796d8f 100644 --- a/Generalized_map/include/CGAL/Generalized_map.h +++ b/Generalized_map/include/CGAL/Generalized_map.h @@ -266,7 +266,7 @@ namespace CGAL { CGAL::cpp11::tuple<> converters; Default_converter_dart_info dartinfoconverter; Default_converter_cmap_0attributes_with_point pointconverter; - return copy(amap, converters, dartinfoconverter, pointconverter); + copy(amap, converters, dartinfoconverter, pointconverter); } template @@ -274,7 +274,7 @@ namespace CGAL { { Default_converter_cmap_0attributes_with_point pointconverter; Default_converter_dart_info dartinfoconverter; - return copy(amap, converters, dartinfoconverter, pointconverter); + copy(amap, converters, dartinfoconverter, pointconverter); } template @@ -282,7 +282,7 @@ namespace CGAL { const DartInfoConverter& dartinfoconverter) { Default_converter_cmap_0attributes_with_point pointconverter; - return copy(amap, converters, dartinfoconverter, pointconverter); + copy(amap, converters, dartinfoconverter, pointconverter); } // Copy constructor from a map having exactly the same type.