Ugly workaround for SunPro

This commit is contained in:
Andreas Fabri 2007-04-04 13:58:12 +00:00
parent 3fee342ef7
commit 0a43e1c51d
2 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@ inline bool do_intersect(
template <class K> template <class K>
Object 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 typename CGAL_WRAP(K)::Line_2 &line,
const K&) const K&)
{ {
@ -92,11 +92,11 @@ intersection(const typename CGAL_WRAP(K)::Segment_2 &seg,
template <class K> template <class K>
Object 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 typename CGAL_WRAP(K)::Segment_2 &seg,
const K& k) const K& k)
{ {
return CGALi::intersection(seg, line, k); return CGALi::intersectionSL(seg, line, k);
} }

View File

@ -464,7 +464,7 @@ Segment_2_Segment_2_pair<K>::intersection(typename K::Segment_2 &result) const
template <class K> template <class K>
Object 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 typename CGAL_WRAP(K)::Segment_2 &seg2,
const K&) const K&)
{ {