From e50820d3fd3755591ec3e701d25114255358f5e9 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 5 Nov 2014 17:01:28 +0100 Subject: [PATCH] Fix #include in Mesh_3 There was missing #include, and surperfuous #include (hard to detect). --- .../include/CGAL/Implicit_to_labeling_function_wrapper.h | 7 +++++-- Mesh_3/include/CGAL/Mesh_3/Slivers_exuder.h | 2 ++ .../CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h | 1 - 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Mesh_3/include/CGAL/Implicit_to_labeling_function_wrapper.h b/Mesh_3/include/CGAL/Implicit_to_labeling_function_wrapper.h index cf6b7df1c44..b7222b6e967 100644 --- a/Mesh_3/include/CGAL/Implicit_to_labeling_function_wrapper.h +++ b/Mesh_3/include/CGAL/Implicit_to_labeling_function_wrapper.h @@ -37,10 +37,13 @@ #endif #include - -namespace CGAL { +#include +#include #include +#include + +namespace CGAL { /** * @class Implicit_to_labeling_function_wrapper diff --git a/Mesh_3/include/CGAL/Mesh_3/Slivers_exuder.h b/Mesh_3/include/CGAL/Mesh_3/Slivers_exuder.h index 7f6a06f9ed5..e2f9ebd7c8d 100644 --- a/Mesh_3/include/CGAL/Mesh_3/Slivers_exuder.h +++ b/Mesh_3/include/CGAL/Mesh_3/Slivers_exuder.h @@ -24,6 +24,8 @@ #define CGAL_MESH_3_SLIVERS_EXUDER_H #include +#include +#include #include #include diff --git a/Mesh_3/include/CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h b/Mesh_3/include/CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h index f5d3b8b9720..52d2bfbf9b7 100644 --- a/Mesh_3/include/CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h +++ b/Mesh_3/include/CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h @@ -22,7 +22,6 @@ #ifndef CGAL_SQUARED_DISTANCE_POINT_3_TRIANGLE_3_H #define CGAL_SQUARED_DISTANCE_POINT_3_TRIANGLE_3_H -#include #include #include #include