From 4bbaafe80830d35530a28c8315a2d6e60b82a6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 19 Nov 2019 11:56:10 +0100 Subject: [PATCH] Fix using undefined type --- Box_intersection_d/include/CGAL/box_intersection_d.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Box_intersection_d/include/CGAL/box_intersection_d.h b/Box_intersection_d/include/CGAL/box_intersection_d.h index 3759f2584b9..89effb7ce06 100644 --- a/Box_intersection_d/include/CGAL/box_intersection_d.h +++ b/Box_intersection_d/include/CGAL/box_intersection_d.h @@ -207,8 +207,7 @@ void box_self_intersection_d( { #if !defined(CGAL_LINKED_WITH_TBB) CGAL_USE(begin); CGAL_USE(end); CGAL_USE(callback); CGAL_USE(box_traits); CGAL_USE(cutoff); CGAL_USE(topology); - CGAL_static_assertion_msg (!(boost::is_convertible::value), - "Parallel_tag is enabled but TBB is unavailable."); + CGAL_static_assertion_msg(false, "Parallel_tag is enabled but TBB is unavailable."); #else // Copying rather than calling 'box_intersection_d(begin, end, begin, end, ...' // is necessary because the 'std::partition' and range splits on the first range