From 45c8d0ef99b9a3f5e4a3e2ac71b15ea2c0d9b26e Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Thu, 13 Oct 2022 17:11:39 +0200 Subject: [PATCH] add missing template parameters --- Mesh_3/include/CGAL/Mesh_3/detect_features_on_image_bbox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mesh_3/include/CGAL/Mesh_3/detect_features_on_image_bbox.h b/Mesh_3/include/CGAL/Mesh_3/detect_features_on_image_bbox.h index 8c0c06a2103..45b9ee407d1 100644 --- a/Mesh_3/include/CGAL/Mesh_3/detect_features_on_image_bbox.h +++ b/Mesh_3/include/CGAL/Mesh_3/detect_features_on_image_bbox.h @@ -40,7 +40,7 @@ void detect_features_on_bbox_with_know_word_type(const CGAL::Image_3& image, using Polylines = std::vector; Polylines polylines_on_bbox; - CGAL::polylines_to_protect(image, polylines_on_bbox); + CGAL::polylines_to_protect(image, polylines_on_bbox); domain.add_features(polylines_on_bbox.begin(), polylines_on_bbox.end()); }