please MSVC

Merge branch 'integration' of github.com:CGAL/cgal-dev into integration
This commit is contained in:
Sébastien Loriot 2017-05-12 09:21:30 +02:00
parent 5258eec9d5
commit 812ce105c6
1 changed files with 3 additions and 3 deletions

View File

@ -10,13 +10,13 @@ typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef K::Point_2 Point_2; typedef K::Point_2 Point_2;
template <class F, class Point_2> template <class F, class Point>
struct Forward_bool_functor struct Forward_bool_functor
: public F : public F
{ {
const std::vector<Point_2>& points; const std::vector<Point>& points;
Forward_bool_functor(const std::vector<Point_2>& points) Forward_bool_functor(const std::vector<Point>& points)
: points(points) : points(points)
{} {}