From 3f931d55ff5ba7301d29a5bc0e6059400669d087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Fri, 31 May 2024 15:08:42 +0200 Subject: [PATCH] add missing template parameter --- Kernel_23/doc/Kernel_23/CGAL/Filtered_kernel.h | 8 +++----- Kernel_23/doc/Kernel_23/PackageDescription.txt | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Kernel_23/doc/Kernel_23/CGAL/Filtered_kernel.h b/Kernel_23/doc/Kernel_23/CGAL/Filtered_kernel.h index d2842b55a2e..1e384667f1c 100644 --- a/Kernel_23/doc/Kernel_23/CGAL/Filtered_kernel.h +++ b/Kernel_23/doc/Kernel_23/CGAL/Filtered_kernel.h @@ -59,13 +59,11 @@ techniques from \cgalCite{cgal:mp-fcafg-05}. The geometric constructions are exactly those of the kernel `CK`, which means that they are not necessarily exact. -\cgalHeading{Parameters} - -The first parameter, `CK`, is the "Construction Kernel", namely the kernel +\tparam CK the "Construction Kernel", namely the kernel from which are taken the types of the geometric objects as well as the geometric constructions. -The second parameter, `UseStaticFilters`, is a Boolean value which +\tparam UseStaticFilters a Boolean value which activates or not an additional layer of semi-static filters. It defaults to `true` (activated), unless the `CGAL_NO_STATIC_FILTERS` macro is defined. This option is mostly for debugging and testing, there should be no @@ -94,7 +92,7 @@ each predicate of the kernel traits interface. Additionally, faster static filters may be used for a few selected critical predicates. */ -template< typename CK > +template< typename CK, bool UseStaticFilters > struct Filtered_kernel { /// \name Types diff --git a/Kernel_23/doc/Kernel_23/PackageDescription.txt b/Kernel_23/doc/Kernel_23/PackageDescription.txt index 7063daeded7..33daf403ecd 100644 --- a/Kernel_23/doc/Kernel_23/PackageDescription.txt +++ b/Kernel_23/doc/Kernel_23/PackageDescription.txt @@ -60,7 +60,7 @@ - `CGAL::Cartesian` - `CGAL::Cartesian_converter` - `CGAL::cartesian_to_homogeneous` -- `CGAL::Filtered_kernel` +- `CGAL::Filtered_kernel` - `CGAL::Filtered_kernel_adaptor` - `CGAL::Filtered_predicate` - `CGAL::Homogeneous`