diff --git a/BGL/include/CGAL/boost/graph/IO/PLY.h b/BGL/include/CGAL/boost/graph/IO/PLY.h index 598464359d6..468bda92ab8 100644 --- a/BGL/include/CGAL/boost/graph/IO/PLY.h +++ b/BGL/include/CGAL/boost/graph/IO/PLY.h @@ -304,7 +304,7 @@ bool write_PLY(std::ostream& os, if(get_mode(os) == CGAL::IO::ASCII) os << c << std::endl; else - os.write(reinterpret_cast(&c), sizeof(c)); + os.write(reinterpret_cast(&c), sizeof(c)); } } @@ -324,7 +324,7 @@ bool write_PLY(std::ostream& os, if(get_mode(os) == CGAL::IO::ASCII) os << c << std::endl; else - os.write(reinterpret_cast(&c), sizeof(c)); + os.write(reinterpret_cast(&c), sizeof(c)); } }