From cdab9daa57fdec2eed983d7b2e5852eab5db7be8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 7 Jun 2013 07:57:45 +0200 Subject: [PATCH] path of boost header relative to the version of boost --- .../read_test_with_different_pmaps.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Point_set_processing_3/test/Point_set_processing_3/read_test_with_different_pmaps.cpp b/Point_set_processing_3/test/Point_set_processing_3/read_test_with_different_pmaps.cpp index ba6a14a37fa..e8c95321473 100644 --- a/Point_set_processing_3/test/Point_set_processing_3/read_test_with_different_pmaps.cpp +++ b/Point_set_processing_3/test/Point_set_processing_3/read_test_with_different_pmaps.cpp @@ -8,8 +8,12 @@ #include #include -//#include -#include +#include +#if BOOST_VERSION >= 104000 + #include +#else + #include +#endif typedef CGAL::Simple_cartesian Kernel; typedef Kernel::Point_3 Point_3;