Remove unused variable (warnings)

This commit is contained in:
Laurent Rineau 2012-01-31 14:36:20 +00:00
parent 033a9ee31f
commit c2ccc19c55
3 changed files with 37 additions and 37 deletions

View File

@ -53,16 +53,16 @@ void _test_spherical_kernel_compute(SK sk)
std::cout << "TESTING COMPUTATIONS" << std::endl;
Equal_3 theEqual_3 = sk.equal_3_object();
Get_equation theGet_equation = sk.get_equation_object();
(void)/* Equal_3 theEqual_3 = */ sk.equal_3_object();
(void)/* Get_equation theGet_equation = */ sk.get_equation_object();
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
Construct_circular_arc_3 theConstruct_circular_arc_3 = sk.construct_circular_arc_3_object();
Construct_circular_arc_point_3 theConstruct_circular_arc_point_3 = sk.construct_circular_arc_point_3_object();
Compute_area_divided_by_pi_3 theCompute_area_divided_by_pi_3 = sk.compute_area_divided_by_pi_3_object();
Compute_squared_length_divided_by_pi_square_3 theCompute_squared_length_divided_by_pi_square_3 =
(void)/* Compute_area_divided_by_pi_3 theCompute_area_divided_by_pi_3 = */ sk.compute_area_divided_by_pi_3_object();
(void)/* Compute_squared_length_divided_by_pi_square_3 theCompute_squared_length_divided_by_pi_square_3 = */
sk.compute_squared_length_divided_by_pi_square_3_object();
Compute_approximate_area_3 theCompute_approximate_area_3 = sk.compute_approximate_area_3_object();
(void)/* Compute_approximate_area_3 theCompute_approximate_area_3 = */ sk.compute_approximate_area_3_object();
Compute_approximate_squared_length_3 theCompute_approximate_squared_length_3 =
sk.compute_approximate_squared_length_3_object();
Compute_approximate_angle_3 theCompute_approximate_angle_3 = sk.compute_approximate_angle_3_object();

View File

@ -41,7 +41,7 @@ void _test_circular_arc_point_construct(SK sk) {
typedef typename AK::Polynomials_for_line_3 Polynomials_for_line_3;
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
Construct_circular_arc_point_3 theConstruct_circular_arc_point_3 =
sk.construct_circular_arc_point_3_object();
Equal_3 theEqual_3 = sk.equal_3_object();
@ -265,7 +265,7 @@ void _test_circle_construct(SK sk) {
Equal_3 theEqual_3 = sk.equal_3_object();
Get_equation theGet_equation = sk.get_equation_object();
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
CGAL::Random generatorOfgenerator;
int random_seed = generatorOfgenerator.get_int(0, 123456);
@ -427,9 +427,9 @@ void _test_circular_arc_construct(SK sk) {
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
Equal_3 theEqual_3 = sk.equal_3_object();
Get_equation theGet_equation = sk.get_equation_object();
(void)/* Get_equation theGet_equation = */sk.get_equation_object();
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
Construct_circular_arc_3 theConstruct_circular_arc_3 = sk.construct_circular_arc_3_object();
CGAL::Random generatorOfgenerator;
@ -2176,14 +2176,14 @@ void _test_bbox(const typename SK::Circle_3 &c)
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
typedef CGAL::Bbox_3 Bbox_3;
Has_on_3 theHas_on_3 = SK().has_on_3_object();
Equal_3 theEqual_3 = SK().equal_3_object();
Intersect_3 theIntersect_3 = SK().intersect_3_object();
Get_equation theGet_equation = SK().get_equation_object();
Construct_circle_3 theConstruct_circle_3 = SK().construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = SK().construct_sphere_3_object();
Construct_plane_3 theConstruct_plane_3 = SK().construct_plane_3_object();
Construct_line_3 theConstruct_line_3 = SK().construct_line_3_object();
(void)/* Has_on_3 theHas_on_3 = */ SK().has_on_3_object();
(void)/* Equal_3 theEqual_3 = */ SK().equal_3_object();
(void)/* Intersect_3 theIntersect_3 = */ SK().intersect_3_object();
(void)/* Get_equation theGet_equation = */ SK().get_equation_object();
(void)/* Construct_circle_3 theConstruct_circle_3 = */ SK().construct_circle_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ SK().construct_sphere_3_object();
(void)/* Construct_plane_3 theConstruct_plane_3 = */ SK().construct_plane_3_object();
(void)/* Construct_line_3 theConstruct_line_3 = */ SK().construct_line_3_object();
Construct_bbox_3 theConstruct_bbox_3 = SK().construct_bbox_3_object();
Bbox_3 b = theConstruct_bbox_3(c);
@ -2264,13 +2264,13 @@ void _test_bounding_box_construct(SK sk)
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
typedef CGAL::Bbox_3 Bbox_3;
Has_on_3 theHas_on_3 = sk.has_on_3_object();
Equal_3 theEqual_3 = sk.equal_3_object();
(void)/* Has_on_3 theHas_on_3 = */ sk.has_on_3_object();
(void)/* Equal_3 theEqual_3 = */ sk.equal_3_object();
Intersect_3 theIntersect_3 = sk.intersect_3_object();
Get_equation theGet_equation = sk.get_equation_object();
(void)/* Get_equation theGet_equation = */ sk.get_equation_object();
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
Construct_plane_3 theConstruct_plane_3 = sk.construct_plane_3_object();
(void)/* Construct_plane_3 theConstruct_plane_3 = */ sk.construct_plane_3_object();
Construct_line_3 theConstruct_line_3 = sk.construct_line_3_object();
Construct_line_arc_3 theConstruct_line_arc_3 = sk.construct_line_arc_3_object();
Construct_bbox_3 theConstruct_bbox_3 = sk.construct_bbox_3_object();
@ -2434,14 +2434,14 @@ void _test_split_construct(SK sk) {
typedef typename AK::Polynomials_for_line_3 Polynomials_for_line_3;
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
Has_on_3 theHas_on_3 = sk.has_on_3_object();
(void)/* Has_on_3 theHas_on_3 = */ sk.has_on_3_object();
Equal_3 theEqual_3 = sk.equal_3_object();
Split_3 theSplit_3 = sk.split_3_object();
Intersect_3 theIntersect_3 = sk.intersect_3_object();
Get_equation theGet_equation = sk.get_equation_object();
(void)/* Intersect_3 theIntersect_3 = */ sk.intersect_3_object();
(void)/* Get_equation theGet_equation = */ sk.get_equation_object();
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
Construct_plane_3 theConstruct_plane_3 = sk.construct_plane_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
(void)/* Construct_plane_3 theConstruct_plane_3 = */ sk.construct_plane_3_object();
Construct_line_3 theConstruct_line_3 = sk.construct_line_3_object();
Construct_line_arc_3 theConstruct_line_arc_3 = sk.construct_line_arc_3_object();
Construct_circular_arc_3 theConstruct_circular_arc_3 = sk.construct_circular_arc_3_object();

View File

@ -41,7 +41,7 @@ void _test_circular_arc_point_equal(SK sk) {
typedef typename AK::Polynomials_for_line_3 Polynomials_for_line_3;
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
Construct_circular_arc_point_3 theConstruct_circular_arc_point_3 =
sk.construct_circular_arc_point_3_object();
Equal_3 theEqual_3 = sk.equal_3_object();
@ -94,11 +94,11 @@ void _test_line_arc_equal(SK sk) {
Equal_3 theEqual_3 = sk.equal_3_object();
Get_equation theGet_equation = sk.get_equation_object();
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
(void)/* Construct_circle_3 theConstruct_circle_3 = */ sk.construct_circle_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
Construct_line_arc_3 theConstruct_line_arc_3 = sk.construct_line_arc_3_object();
Construct_line_3 theConstruct_line_3 = sk.construct_line_3_object();
Construct_plane_3 theConstruct_plane_3 = sk.construct_plane_3_object();
(void)/* Construct_plane_3 theConstruct_plane_3 = */ sk.construct_plane_3_object();
Construct_circular_arc_point_3 theConstruct_circular_arc_point_3 =
sk.construct_circular_arc_point_3_object();
@ -165,9 +165,9 @@ void _test_circular_arc_equal(SK sk) {
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
Equal_3 theEqual_3 = sk.equal_3_object();
Get_equation theGet_equation = sk.get_equation_object();
(void)/* Get_equation theGet_equation = */ sk.get_equation_object();
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
Construct_circular_arc_3 theConstruct_circular_arc_3 = sk.construct_circular_arc_3_object();
CGAL::Random generatorOfgenerator;
@ -528,13 +528,13 @@ void _test_do_overlap_predicate(SK sk) {
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
Construct_circle_3 theConstruct_circle_3 = sk.construct_circle_3_object();
Construct_sphere_3 theConstruct_sphere_3 = sk.construct_sphere_3_object();
Construct_plane_3 theConstruct_plane_3 = sk.construct_plane_3_object();
(void)/* Construct_sphere_3 theConstruct_sphere_3 = */ sk.construct_sphere_3_object();
(void)/* Construct_plane_3 theConstruct_plane_3 = */ sk.construct_plane_3_object();
Construct_line_3 theConstruct_line_3 = sk.construct_line_3_object();
Construct_line_arc_3 theConstruct_line_arc_3 = sk.construct_line_arc_3_object();
Construct_circular_arc_3 theConstruct_circular_arc_3 = sk.construct_circular_arc_3_object();
Construct_circular_arc_point_3 theConstruct_circular_arc_point_3 = sk.construct_circular_arc_point_3_object();
Has_on_3 theHas_on_3 = sk.has_on_3_object();
(void)/* Has_on_3 theHas_on_3 = */ sk.has_on_3_object();
Do_overlap_3 theDo_overlap_3 = sk.do_overlap_3_object();
std::cout << "Testing do_overlap(Line_arc, Line_arc)..." << std::endl;
@ -694,7 +694,7 @@ void _test_lexico_operations(SK sk) {
typedef typename AK::Polynomials_for_line_3 Polynomials_for_line_3;
typedef typename AK::Root_for_spheres_2_3 Root_for_spheres_2_3;
Construct_circular_arc_point_3 theConstruct_circular_arc_point_3 =
(void)// Construct_circular_arc_point_3 theConstruct_circular_arc_point_3 =
sk.construct_circular_arc_point_3_object();
Circular_arc_point_3 p[3];