From b212c59dfcbba189f8aff3f6c0954a2723428106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 28 Nov 2012 09:39:05 +0100 Subject: [PATCH] BUG when not using the default traits, pass it to the function --- Convex_hull_2/examples/Convex_hull_2/convex_hull_yz.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Convex_hull_2/examples/Convex_hull_2/convex_hull_yz.cpp b/Convex_hull_2/examples/Convex_hull_2/convex_hull_yz.cpp index b2e7e03b2d7..cf13a0ec51c 100644 --- a/Convex_hull_2/examples/Convex_hull_2/convex_hull_yz.cpp +++ b/Convex_hull_2/examples/Convex_hull_2/convex_hull_yz.cpp @@ -13,6 +13,6 @@ int main() std::istream_iterator< Point_2 > input_begin( std::cin ); std::istream_iterator< Point_2 > input_end; std::ostream_iterator< Point_2 > output( std::cout, "\n" ); - CGAL::convex_hull_2( input_begin, input_end, output ); + CGAL::convex_hull_2( input_begin, input_end, output, K() ); return 0; }