Skip to content

Commit

Permalink
move a using to avoid doxygen warning
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Apr 18, 2024
1 parent 6158ffa commit 8f1086f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Polygon/include/CGAL/Multipolygon_with_holes_2.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ class Multipolygon_with_holes_2 {

/// polygon with holes type
using Polygon_with_holes_2 = CGAL::Polygon_with_holes_2<Kernel, Container>;
using value_type = Polygon_with_holes_2;

/// @}

using value_type = Polygon_with_holes_2;
using Polygon_with_holes_container = std::deque<Polygon_with_holes_2>;

using Polygon_with_holes_iterator = typename Polygon_with_holes_container::iterator;
Expand Down

0 comments on commit 8f1086f

Please sign in to comment.