No typename; no need for CGAL::

This commit is contained in:
Andreas Fabri 2018-05-18 15:46:34 +01:00
parent 31b5d5d3aa
commit c908ed5fa2
1 changed files with 6 additions and 6 deletions

View File

@ -77,16 +77,16 @@ intersection(const CGAL::Bbox_2& b,
} // namespace Intersections
template<typename K>
typename CGAL::Intersection_traits<K, CGAL::Bbox_2, typename Point_2<K> >::result_type
intersection(const CGAL::Bbox_2& b,
const typename Point_2<K> & a)
typename CGAL::Intersection_traits<K, Bbox_2, Point_2<K> >::result_type
intersection(const Bbox_2& b,
const Point_2<K> & a)
{
return Intersections::internal::intersection(b,a,K());
}
template<typename K>
typename CGAL::Intersection_traits<K, CGAL::Bbox_2, typename Point_2<K> >::result_type
intersection(const typename Point_2<K> & a,
const CGAL::Bbox_2& b)
typename CGAL::Intersection_traits<K, Bbox_2, Point_2<K> >::result_type
intersection(const Point_2<K> & a,
const Bbox_2& b)
{
return Intersections::internal::intersection(b,a,K());
}