From f843c7c8b0ff1d9f444e6fec3c50698bc024bd52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 14 Feb 2023 10:04:34 +0100 Subject: [PATCH] Fix test compilation --- .../test/Straight_skeleton_2/test_sls_traits.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Straight_skeleton_2/test/Straight_skeleton_2/test_sls_traits.cpp b/Straight_skeleton_2/test/Straight_skeleton_2/test_sls_traits.cpp index 2c9e0a76850..bed435019d8 100644 --- a/Straight_skeleton_2/test/Straight_skeleton_2/test_sls_traits.cpp +++ b/Straight_skeleton_2/test/Straight_skeleton_2/test_sls_traits.cpp @@ -100,8 +100,11 @@ struct triple return CGAL::Construct_ss_trisegment_2(sTraits)( Segment(Point(mP[0].x(),mP[0].y()), Point(mP[1].x(),mP[1].y()), sid0), + FT(1), Segment(Point(mP[2].x(),mP[2].y()), Point(mP[3].x(),mP[3].y()), sid1), - Segment(Point(mP[4].x(),mP[4].y()), Point(mP[5].x(),mP[5].y()), sid2)); + FT(1), + Segment(Point(mP[4].x(),mP[4].y()), Point(mP[5].x(),mP[5].y()), sid2), + FT(1)); } friend std::ostream& operator<<( std::ostream& os, Point const& aP )