From 74084d1246f52b8ab015a842b5d86c819aac26b8 Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Thu, 13 Dec 2018 15:45:22 +0100 Subject: [PATCH] Add missing includes --- .../CGAL/Classification/ETHZ_random_forest_classifier.h | 3 +++ .../Classification/internal/auxiliary/random-forest/forest.hpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Classification/include/CGAL/Classification/ETHZ_random_forest_classifier.h b/Classification/include/CGAL/Classification/ETHZ_random_forest_classifier.h index 12db1189a0b..c076b34896b 100644 --- a/Classification/include/CGAL/Classification/ETHZ_random_forest_classifier.h +++ b/Classification/include/CGAL/Classification/ETHZ_random_forest_classifier.h @@ -25,6 +25,7 @@ #include #include +#include #ifdef CGAL_CLASSIFICATION_VERBOSE #define VERBOSE_TREE_PROGRESS 1 @@ -43,6 +44,8 @@ #include #include +#include + #include #include #include diff --git a/Classification/include/CGAL/Classification/internal/auxiliary/random-forest/forest.hpp b/Classification/include/CGAL/Classification/internal/auxiliary/random-forest/forest.hpp index 6dd83485e76..02d326f8c76 100644 --- a/Classification/include/CGAL/Classification/internal/auxiliary/random-forest/forest.hpp +++ b/Classification/include/CGAL/Classification/internal/auxiliary/random-forest/forest.hpp @@ -45,6 +45,8 @@ #include #endif +#include + #ifdef CGAL_LINKED_WITH_TBB #include #include