From 61ae325e687218e259845dadd1fd0be7ee7b9285 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 15 Aug 2024 14:03:27 +0100 Subject: [PATCH] Fix template parameter --- Kernel_23/include/CGAL/Bbox.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel_23/include/CGAL/Bbox.h b/Kernel_23/include/CGAL/Bbox.h index ec7b35b43148..b0fd9df0647a 100644 --- a/Kernel_23/include/CGAL/Bbox.h +++ b/Kernel_23/include/CGAL/Bbox.h @@ -127,8 +127,8 @@ template class Bbox; // A fixed D-dimensional axis aligned box -template -class Bbox> : public Impl::Bbox, Bbox> +template +class Bbox, T> : public Impl::Bbox, Bbox,T>> { enum { D = N }; public: @@ -141,7 +141,7 @@ class Bbox> : public Impl::Bbox, Bbox> // A dynamic D-dimensional axis aligned box template -class Bbox : public Impl::Bbox, Bbox<0,T>> +class Bbox : public Impl::Bbox, Bbox> { public: inline int dimension() const { return this->min_values.size(); }