diff --git a/Straight_skeleton_2/include/CGAL/Straight_skeleton_builder_2.h b/Straight_skeleton_2/include/CGAL/Straight_skeleton_builder_2.h index f0f8aafa0c9..7de7a1f977b 100644 --- a/Straight_skeleton_2/include/CGAL/Straight_skeleton_builder_2.h +++ b/Straight_skeleton_2/include/CGAL/Straight_skeleton_builder_2.h @@ -863,12 +863,12 @@ private : } // internal function to filter split event in case the traits is Filtered - bool CanSafelyIgnoreSplitEventImpl(const EventPtr& lEvent, const boost::optional& bound, mpl_::bool_) + bool CanSafelyIgnoreSplitEventImpl(const EventPtr& lEvent, const boost::optional& bound, boost::mpl::bool_) { return false; } - bool CanSafelyIgnoreSplitEventImpl(const EventPtr& lEvent, const boost::optional& bound, mpl_::bool_) + bool CanSafelyIgnoreSplitEventImpl(const EventPtr& lEvent, const boost::optional& bound, boost::mpl::bool_) { return Traits::can_safely_ignore_split_event(lEvent, bound); } @@ -880,7 +880,7 @@ private : boost::optional UpperBoundForValidSplitEventsImpl(Vertex_handle, Vertex_handle, Vertex_handle, Halfedge_handle_vector_iterator , Halfedge_handle_vector_iterator, - mpl_::bool_) + boost::mpl::bool_) { return boost::none; } @@ -888,7 +888,7 @@ private : boost::optional UpperBoundForValidSplitEventsImpl(Vertex_handle lPrev, Vertex_handle aNode, Vertex_handle lNext, Halfedge_handle_vector_iterator contour_halfedges_begin, Halfedge_handle_vector_iterator contour_halfedges_end, - mpl_::bool_) + boost::mpl::bool_) { return Traits::upper_bound_for_valid_split_events(lPrev, aNode, lNext, contour_halfedges_begin, contour_halfedges_end); }