From 00d87d50fc230c8e077658974b79989fe75639bb Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Sat, 30 Aug 2008 10:29:04 +0000 Subject: [PATCH] Remove "unused argument" warnings. --- .../include/CGAL/Ray_2_Iso_rectangle_2_intersection.h | 2 +- Intersections_2/include/CGAL/Ray_2_Ray_2_intersection.h | 2 +- Intersections_2/include/CGAL/Ray_2_Segment_2_intersection.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Intersections_2/include/CGAL/Ray_2_Iso_rectangle_2_intersection.h b/Intersections_2/include/CGAL/Ray_2_Iso_rectangle_2_intersection.h index 157f2fdb811..f9290a3d3d2 100644 --- a/Intersections_2/include/CGAL/Ray_2_Iso_rectangle_2_intersection.h +++ b/Intersections_2/include/CGAL/Ray_2_Iso_rectangle_2_intersection.h @@ -64,7 +64,7 @@ protected: template inline bool do_intersect(const typename K::Ray_2 &p1, const typename K::Iso_rectangle_2 &p2, - const K& k) + const K&) { typedef Ray_2_Iso_rectangle_2_pair pair_t; pair_t pair(&p1, &p2); diff --git a/Intersections_2/include/CGAL/Ray_2_Ray_2_intersection.h b/Intersections_2/include/CGAL/Ray_2_Ray_2_intersection.h index e38dfc42b5a..814b57e4714 100644 --- a/Intersections_2/include/CGAL/Ray_2_Ray_2_intersection.h +++ b/Intersections_2/include/CGAL/Ray_2_Ray_2_intersection.h @@ -64,7 +64,7 @@ template inline bool do_intersect( const typename K::Ray_2 &p1, const typename K::Ray_2 &p2, - const K& k) + const K&) { typedef Ray_2_Ray_2_pair pair_t; pair_t pair(&p1, &p2); diff --git a/Intersections_2/include/CGAL/Ray_2_Segment_2_intersection.h b/Intersections_2/include/CGAL/Ray_2_Segment_2_intersection.h index a2d1e372b81..1c5676e2494 100644 --- a/Intersections_2/include/CGAL/Ray_2_Segment_2_intersection.h +++ b/Intersections_2/include/CGAL/Ray_2_Segment_2_intersection.h @@ -61,7 +61,7 @@ protected: template inline bool do_intersect(const typename K::Ray_2 &p1, const typename K::Segment_2 &p2, - const K& k) + const K&) { typedef Ray_2_Segment_2_pair pair_t; pair_t pair(&p1, &p2);