From d087835efd0b336fc2ea37ce6707fa40ce5dc85c Mon Sep 17 00:00:00 2001 From: Susan Hert Date: Thu, 7 Mar 2002 11:06:24 +0000 Subject: [PATCH] changed std:: to CGAL_CLIB_STD:: to make VC++ happy --- .../Convex_hull_2/examples/Convex_hull_2/ch_example_timing.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/Convex_hull_2/examples/Convex_hull_2/ch_example_timing.C b/Packages/Convex_hull_2/examples/Convex_hull_2/ch_example_timing.C index cc6186794c0..a0241805c42 100644 --- a/Packages/Convex_hull_2/examples/Convex_hull_2/ch_example_timing.C +++ b/Packages/Convex_hull_2/examples/Convex_hull_2/ch_example_timing.C @@ -28,7 +28,7 @@ int main( int argc, char* argv[] ) { std::cerr << "Usage: ch_example_timing data_file_name "; std::cerr << "[number_of_iterations]" << std::endl; - std::exit(1); + CGAL_CLIB_STD::exit(1); } std::vector< Point2 > V; std::vector< Point2 > VE; @@ -40,7 +40,7 @@ int main( int argc, char* argv[] ) std::copy( V.begin(), V.end(), std::back_inserter(VE) ); int iterations; if (argc == 3) - iterations = std::atoi( argv[2] ); + iterations = CGAL_CLIB_STD::atoi( argv[2] ); else iterations = 1; CGAL::ch_timing(V.begin(), V.end(), VE.begin(), iterations, TraitsCls() );