From ef8d2747ce143fa90c8b583cfbd1ac3d2eaf2381 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 18 Jan 2024 11:18:14 +0000 Subject: [PATCH] Document the rule --- Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h b/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h index 8ff40ee27d5..b3453d6146a 100644 --- a/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h +++ b/Polygon_repair/include/CGAL/Polygon_repair/Polygon_repair.h @@ -27,8 +27,10 @@ namespace CGAL { namespace Polygon_repair { +#ifndef DOXYGEN_RUNNING template class Polygon_repair; +#endif /// \ingroup PkgPolygonRepairFunctions /// Repair a polygon without holes using @@ -289,6 +291,8 @@ bool is_valid(const Multipolygon_with_holes_2& multipolygon) return true; } +#ifndef DOXYGEN_RUNNING + template > class Polygon_repair { public: @@ -694,6 +698,8 @@ protected: typename Triangulation::Face_handle search_start; }; +#endif // DOXYGEN_RUNNING + } // namespace Polygon_repair } // namespace CGAL