cgal/Stream_support/include/CGAL/IO/PLY
Mael Rouxel-Labbé 6edac17fd3 Fix a warning
/mnt/testsuite/include/CGAL/IO/PLY/PLY_writer.h:296:30: warning:
loop variable 'v' of type 'const unsigned int&' binds to a temporary
constructed from type 'const long unsigned int' [-Wrange-loop-construct]
  296 |       for(const ElementType& v : vec)

This is because ElementType is not the value type of the vector,
but the data type that we write, and for 64 bits integer,
we convert to 32 bits. So in that case, we can't cast yet.
2025-12-17 12:33:40 +01:00
..
PLY_reader.h forward declarations must come first 2025-10-30 17:46:45 +01:00
PLY_writer.h Fix a warning 2025-12-17 12:33:40 +01:00
read_ply_points.h cleanup 2025-10-31 09:40:05 +01:00
write_ply_points.h cleanup 2025-10-31 09:40:05 +01:00