move the include of Hole_filling after those of the mesh

This commit is contained in:
Andreas Fabri 2015-01-15 11:37:29 +01:00
parent 4f7ae328d7
commit 2e5d7006f0
1 changed files with 6 additions and 3 deletions

View File

@ -1,13 +1,16 @@
#include <CGAL/Hole_filling.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <cassert>
#include <cassert>>
#include <vector>
#include <boost/tuple/tuple.hpp>
#include <CGAL/Polyhedron_incremental_builder_3.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/IO/Polyhedron_iostream.h>
#include <CGAL/boost/graph/graph_traits_Polyhedron_3.h>
#include <CGAL/boost/graph/properties_Polyhedron_3.h>
#include <CGAL/Hole_filling.h>
typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
typedef Kernel::Point_3 Point_3;
@ -202,4 +205,4 @@ int main() {
test_should_be_no_output("data/collinear.polylines.txt", true);
test_should_be_no_output("data/collinear.polylines.txt", false);
std::cerr << "All Done!" << std::endl;
}
}