From c908ed5fa23ad752e367b6f5822defced25a60a3 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 18 May 2018 15:46:34 +0100 Subject: [PATCH] No typename; no need for CGAL:: --- .../include/CGAL/Intersections_2/Bbox_2_Point_2.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Intersections_2/include/CGAL/Intersections_2/Bbox_2_Point_2.h b/Intersections_2/include/CGAL/Intersections_2/Bbox_2_Point_2.h index 680df50550b..69176f42f1a 100644 --- a/Intersections_2/include/CGAL/Intersections_2/Bbox_2_Point_2.h +++ b/Intersections_2/include/CGAL/Intersections_2/Bbox_2_Point_2.h @@ -77,16 +77,16 @@ intersection(const CGAL::Bbox_2& b, } // namespace Intersections template -typename CGAL::Intersection_traits >::result_type -intersection(const CGAL::Bbox_2& b, - const typename Point_2 & a) +typename CGAL::Intersection_traits >::result_type +intersection(const Bbox_2& b, + const Point_2 & a) { return Intersections::internal::intersection(b,a,K()); } template -typename CGAL::Intersection_traits >::result_type - intersection(const typename Point_2 & a, - const CGAL::Bbox_2& b) +typename CGAL::Intersection_traits >::result_type + intersection(const Point_2 & a, + const Bbox_2& b) { return Intersections::internal::intersection(b,a,K()); }