mirror of https://github.com/CGAL/cgal
No typename; no need for CGAL::
This commit is contained in:
parent
31b5d5d3aa
commit
c908ed5fa2
|
|
@ -77,16 +77,16 @@ intersection(const CGAL::Bbox_2& b,
|
||||||
} // namespace Intersections
|
} // namespace Intersections
|
||||||
|
|
||||||
template<typename K>
|
template<typename K>
|
||||||
typename CGAL::Intersection_traits<K, CGAL::Bbox_2, typename Point_2<K> >::result_type
|
typename CGAL::Intersection_traits<K, Bbox_2, Point_2<K> >::result_type
|
||||||
intersection(const CGAL::Bbox_2& b,
|
intersection(const Bbox_2& b,
|
||||||
const typename Point_2<K> & a)
|
const Point_2<K> & a)
|
||||||
{
|
{
|
||||||
return Intersections::internal::intersection(b,a,K());
|
return Intersections::internal::intersection(b,a,K());
|
||||||
}
|
}
|
||||||
template<typename K>
|
template<typename K>
|
||||||
typename CGAL::Intersection_traits<K, CGAL::Bbox_2, typename Point_2<K> >::result_type
|
typename CGAL::Intersection_traits<K, Bbox_2, Point_2<K> >::result_type
|
||||||
intersection(const typename Point_2<K> & a,
|
intersection(const Point_2<K> & a,
|
||||||
const CGAL::Bbox_2& b)
|
const Bbox_2& b)
|
||||||
{
|
{
|
||||||
return Intersections::internal::intersection(b,a,K());
|
return Intersections::internal::intersection(b,a,K());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue