From cc234476b04b404bc924f2a2f42be8e7f0789a8d Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Fri, 18 Aug 2017 11:01:55 +0300 Subject: [PATCH] Fixed enum --- .../include/CGAL/Set_movable_separability_2/internal/Utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Set_movable_separability_2/include/CGAL/Set_movable_separability_2/internal/Utils.h b/Set_movable_separability_2/include/CGAL/Set_movable_separability_2/internal/Utils.h index 72981ef9342..50c7fc8603a 100644 --- a/Set_movable_separability_2/include/CGAL/Set_movable_separability_2/internal/Utils.h +++ b/Set_movable_separability_2/include/CGAL/Set_movable_separability_2/internal/Utils.h @@ -38,7 +38,7 @@ get_segment_outer_circle(const typename Kernel::Segment_2 seg, { typename Kernel::Direction_2 forward( seg); typename Kernel::Direction_2 backward(-forward); - return (orientation == CGAL::Orientation::CLOCKWISE) ? + return (orientation == CGAL::CLOCKWISE) ? std::make_pair(backward, forward) : std::make_pair(forward, backward); }