From 0a43e1c51d89f3fc6af7538d17d35f33ece1953b Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 4 Apr 2007 13:58:12 +0000 Subject: [PATCH] Ugly workaround for SunPro --- .../include/CGAL/Segment_2_Line_2_intersection.h | 6 +++--- .../include/CGAL/Segment_2_Segment_2_intersection.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Intersections_2/include/CGAL/Segment_2_Line_2_intersection.h b/Intersections_2/include/CGAL/Segment_2_Line_2_intersection.h index 2cc8c976d45..f462d4ac124 100644 --- a/Intersections_2/include/CGAL/Segment_2_Line_2_intersection.h +++ b/Intersections_2/include/CGAL/Segment_2_Line_2_intersection.h @@ -70,7 +70,7 @@ inline bool do_intersect( template Object -intersection(const typename CGAL_WRAP(K)::Segment_2 &seg, +intersectionSL(const typename CGAL_WRAP(K)::Segment_2 &seg, const typename CGAL_WRAP(K)::Line_2 &line, const K&) { @@ -92,11 +92,11 @@ intersection(const typename CGAL_WRAP(K)::Segment_2 &seg, template Object -intersection(const typename CGAL_WRAP(K)::Line_2 &line, +intersectionLS(const typename CGAL_WRAP(K)::Line_2 &line, const typename CGAL_WRAP(K)::Segment_2 &seg, const K& k) { - return CGALi::intersection(seg, line, k); + return CGALi::intersectionSL(seg, line, k); } diff --git a/Intersections_2/include/CGAL/Segment_2_Segment_2_intersection.h b/Intersections_2/include/CGAL/Segment_2_Segment_2_intersection.h index 9704ff1cde7..21e5957f515 100644 --- a/Intersections_2/include/CGAL/Segment_2_Segment_2_intersection.h +++ b/Intersections_2/include/CGAL/Segment_2_Segment_2_intersection.h @@ -464,7 +464,7 @@ Segment_2_Segment_2_pair::intersection(typename K::Segment_2 &result) const template Object -intersection(const typename CGAL_WRAP(K)::Segment_2 &seg1, +intersectionSS(const typename CGAL_WRAP(K)::Segment_2 &seg1, const typename CGAL_WRAP(K)::Segment_2 &seg2, const K&) {