Fix headers to include

This commit is contained in:
Andreas Fabri 2021-09-21 07:36:07 +01:00
parent c19426fdd2
commit f3efaa87c6
1 changed files with 5 additions and 4 deletions

View File

@ -18,7 +18,7 @@
#include <boost/graph/graph_traits.hpp> #include <boost/graph/graph_traits.hpp>
#include <vector> #include <vector>
#include <fstream> #include <iostream>
#include <array> #include <array>
namespace CGAL { namespace CGAL {
@ -59,7 +59,7 @@ std::ostream& operator<<(std::ostream& os, const Indexed_triangle_set<P>& its)
for(const std::array<int,3> f : its.faces){ for(const std::array<int,3> f : its.faces){
os << f[0] << " "<< f[1] << " "<< f[2] << "\n"; os << f[0] << " "<< f[1] << " "<< f[2] << "\n";
} }
std::cout << std::flush; os << std::flush;
return os; return os;
} }
@ -116,5 +116,6 @@ struct graph_traits<CGAL::Indexed_triangle_set<P>>
typedef void* halfedge_descriptor; typedef void* halfedge_descriptor;
}; };
} // boost } // namespace boost
#endif
#endif // CGAL_INDEXED_TRIANGLE_SET_H