BUG when not using the default traits, pass it to the function

This commit is contained in:
Sébastien Loriot 2012-11-28 09:39:05 +01:00
parent 98c8d8d811
commit b212c59dfc
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}