From 9182cf5dddf4509f841d8d24c0e892e77b740bf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Wed, 1 Mar 2023 13:45:52 +0100 Subject: [PATCH] Fix issues in the documentation of CGAL::Straight_skeleton_2 --- .../doc/Straight_skeleton_2/CGAL/Straight_skeleton_2.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Straight_skeleton_2/doc/Straight_skeleton_2/CGAL/Straight_skeleton_2.h b/Straight_skeleton_2/doc/Straight_skeleton_2/CGAL/Straight_skeleton_2.h index 5ce9ea29264..122e329de82 100644 --- a/Straight_skeleton_2/doc/Straight_skeleton_2/CGAL/Straight_skeleton_2.h +++ b/Straight_skeleton_2/doc/Straight_skeleton_2/CGAL/Straight_skeleton_2.h @@ -15,16 +15,20 @@ straight skeleton. If an advanced user needs to get access to the modifying operations, it must call the required methods through the `Base` class. -\tparam Traits_ must be a model of `Kernel` +\tparam Traits must be a model of `Kernel` \sa `StraightSkeletonVertex_2` \sa `StraightSkeletonHalfedge_2` */ -template< typename Traits_> +template< typename Traits> class Straight_skeleton_2 - : public HalfedgeDS_vector { + : public CGAL::HalfedgeDS_default +{ public: + /// Access to the base (HDS) class + typedef unspecified_type Base; + }; /* end Straight_skeleton_2 */ } /* end namespace CGAL */