From 3c15e412c4604bd561fa977d1a6d671cbc1fc355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 19 Nov 2020 13:28:06 +0100 Subject: [PATCH] fix warning warning observed with g++ (Debian 10.2.0-16) 10.2.0 that looks like to a bug. --- Point_set_processing_3/include/CGAL/IO/read_ply_points.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Point_set_processing_3/include/CGAL/IO/read_ply_points.h b/Point_set_processing_3/include/CGAL/IO/read_ply_points.h index 7fffd53a18e..6cf449e48e6 100644 --- a/Point_set_processing_3/include/CGAL/IO/read_ply_points.h +++ b/Point_set_processing_3/include/CGAL/IO/read_ply_points.h @@ -502,9 +502,7 @@ template CGAL_DEPRECATED bool read_ply_points_with_properties(std::istream& is, OutputIterator output, PropertyHandler&& ... properties) { - typedef typename value_type_traits::type OutputValueType; - - return read_PLY_with_properties(is, output, std::forward(properties)...); + return read_PLY_with_properties::type>(is, output, std::forward(properties)...); } template