Try to silence false warning

This commit is contained in:
Maxime Gimeno 2020-12-18 14:21:17 +01:00
parent 00edae2400
commit d68f387b85
1 changed files with 1 additions and 1 deletions

View File

@ -644,7 +644,7 @@ CGAL_DEPRECATED bool read_las_points(std::istream& is,
using parameters::get_parameter;
typedef typename CGAL::GetPointMap<Point_set_processing_3::Fake_point_range<OutputIteratorValueType>, CGAL_BGL_NP_CLASS>::type PointMap;
PointMap point_map = choose_parameter<PointMap>(get_parameter(np, internal_np::point_map));
PointMap point_map = choose_parameter<typename CGAL::GetPointMap<Point_set_processing_3::Fake_point_range<OutputIteratorValueType>, CGAL_BGL_NP_CLASS>::type>(get_parameter(np, internal_np::point_map));
return read_LAS(is, output, make_las_point_reader(point_map));
}