mirror of https://github.com/CGAL/cgal
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:
parent
7cfb944afb
commit
3c15e412c4
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue