From fe687bd17c5eebba114c0aaf5d1f10047acfa95f Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 11 Dec 2024 16:28:10 +0000 Subject: [PATCH] clean --- .../examples/Frechet_distance/Frechet_distance_d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frechet_distance/examples/Frechet_distance/Frechet_distance_d.cpp b/Frechet_distance/examples/Frechet_distance/Frechet_distance_d.cpp index d3d4982c862..e3e0e1eef62 100644 --- a/Frechet_distance/examples/Frechet_distance/Frechet_distance_d.cpp +++ b/Frechet_distance/examples/Frechet_distance/Frechet_distance_d.cpp @@ -9,7 +9,7 @@ using Kernel = CGAL::Epick_d>; using Traits = CGAL::Frechet_distance_traits_d; using Point = Traits::Point_d; -int main(int , char*) +int main() { std::array A = { Point(0,0,0,0), Point(1,0,0,0), Point(1,1,0,1),Point(1,1,1,0)}; std::array B = { Point(0,0,0,0), Point(1,0,0,0), Point(1,1,0,0),Point(1,1,1,0)};