mirror of https://github.com/CGAL/cgal
Ugly workaround for SunPro
This commit is contained in:
parent
3fee342ef7
commit
0a43e1c51d
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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&)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue