diff --git a/TDS_3/include/CGAL/Triangulation_data_structure_3.h b/TDS_3/include/CGAL/Triangulation_data_structure_3.h index 65e94bad71b..2fa274adadc 100644 --- a/TDS_3/include/CGAL/Triangulation_data_structure_3.h +++ b/TDS_3/include/CGAL/Triangulation_data_structure_3.h @@ -55,7 +55,6 @@ # include #endif -#include #include namespace CGAL { @@ -123,9 +122,9 @@ public: // Cells // N.B.: Concurrent_compact_container requires TBB #ifdef CGAL_LINKED_WITH_TBB - typedef typename boost::mpl::if_c + typedef typename std::conditional < - boost::is_convertible::value, + std::is_convertible::value, Concurrent_compact_container >, Compact_container >::type Cell_range; @@ -141,9 +140,9 @@ public: // Vertices // N.B.: Concurrent_compact_container requires TBB #ifdef CGAL_LINKED_WITH_TBB - typedef typename boost::mpl::if_c + typedef typename std::conditional < - boost::is_convertible::value, + std::is_convertible::value, Concurrent_compact_container >, Compact_container >::type Vertex_range;