fix warning

warning observed with g++ (Debian 10.2.0-16) 10.2.0 that looks like to a bug.
This commit is contained in:
Sébastien Loriot 2020-11-19 13:28:06 +01:00
parent 7cfb944afb
commit 3c15e412c4
1 changed files with 1 additions and 3 deletions

View File

@ -502,9 +502,7 @@ template <typename OutputIterator,
typename ... PropertyHandler>
CGAL_DEPRECATED bool read_ply_points_with_properties(std::istream& is, OutputIterator output, PropertyHandler&& ... properties)
{
typedef typename value_type_traits<OutputIterator>::type OutputValueType;
return read_PLY_with_properties<OutputValueType>(is, output, std::forward<PropertyHandler>(properties)...);
return read_PLY_with_properties<typename value_type_traits<OutputIterator>::type>(is, output, std::forward<PropertyHandler>(properties)...);
}
template <typename OutputIteratorValueType,