Remove unused variables (warning)

This commit is contained in:
Laurent Rineau 2012-01-31 15:00:14 +00:00
parent 3cac6fbb67
commit 88b7d66753
1 changed files with 1 additions and 4 deletions

View File

@ -46,9 +46,7 @@ void _test_bounding_box_construct(const K &k)
typedef typename K::Construct_circle_3 Construct_circle_3; typedef typename K::Construct_circle_3 Construct_circle_3;
typedef CGAL::Bbox_3 Bbox_3; typedef CGAL::Bbox_3 Bbox_3;
Intersect_3 theIntersect_3 = k.intersect_3_object();
Construct_circle_3 theConstruct_circle_3 = k.construct_circle_3_object(); Construct_circle_3 theConstruct_circle_3 = k.construct_circle_3_object();
Construct_bbox_3 theConstruct_bbox_3 = k.construct_bbox_3_object();
std::cout << "Testing the bbox of Circle_3..." << std::endl; std::cout << "Testing the bbox of Circle_3..." << std::endl;
@ -89,8 +87,7 @@ void _test_circle_construct(const K &k) {
Equal_3 theEqual_3 = k.equal_3_object(); Equal_3 theEqual_3 = k.equal_3_object();
Construct_circle_3 theConstruct_circle_3 = k.construct_circle_3_object(); Construct_circle_3 theConstruct_circle_3 = k.construct_circle_3_object();
Compute_squared_distance_3 squared_distance = k.compute_squared_distance_3_object(); Compute_squared_distance_3 squared_distance = k.compute_squared_distance_3_object();
Collinear_3 collinear = k.collinear_3_object();
CGAL::Random generatorOfgenerator; CGAL::Random generatorOfgenerator;
int random_seed = generatorOfgenerator.get_int(0, 123456); int random_seed = generatorOfgenerator.get_int(0, 123456);