From cfc75d7f32b14301fda87f84bba9fca8c3bdf18d Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Wed, 17 Jan 2018 22:05:51 +0000 Subject: [PATCH] Box_intersection_d --- .../test/Box_intersection_d/benchmark_box_intersection.cpp | 2 ++ Box_intersection_d/test/Box_intersection_d/util.h | 3 +++ 2 files changed, 5 insertions(+) diff --git a/Box_intersection_d/test/Box_intersection_d/benchmark_box_intersection.cpp b/Box_intersection_d/test/Box_intersection_d/benchmark_box_intersection.cpp index 6f4ccbb9233..e6283e5d7cf 100644 --- a/Box_intersection_d/test/Box_intersection_d/benchmark_box_intersection.cpp +++ b/Box_intersection_d/test/Box_intersection_d/benchmark_box_intersection.cpp @@ -30,6 +30,8 @@ #include #include +#include + #include "util.h" static unsigned int failed = 0; diff --git a/Box_intersection_d/test/Box_intersection_d/util.h b/Box_intersection_d/test/Box_intersection_d/util.h index 7daacea3951..b8811e66721 100644 --- a/Box_intersection_d/test/Box_intersection_d/util.h +++ b/Box_intersection_d/test/Box_intersection_d/util.h @@ -9,6 +9,8 @@ #include +#include + template< class NT, int DIM, bool CLOSED = true > struct Util { typedef NT Number_type; @@ -128,5 +130,6 @@ struct Util { }; +#include #endif