move a using to avoid doxygen warning

This commit is contained in:
Andreas Fabri 2024-04-18 09:57:47 +01:00
parent 6158ffa63e
commit 8f1086f050
1 changed files with 2 additions and 1 deletions

View File

@ -43,9 +43,10 @@ public:
/// 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;