From 2e5d7006f0aebfdc67a6cac8ef175c045ea6da95 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 15 Jan 2015 11:37:29 +0100 Subject: [PATCH] move the include of Hole_filling after those of the mesh --- .../triangulate_hole_polyline_test.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp index c4d065b608a..f5fca44198a 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/triangulate_hole_polyline_test.cpp @@ -1,13 +1,16 @@ -#include + #include -#include +#include > #include #include #include #include #include +#include +#include +#include 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; -} \ No newline at end of file +}