From 8ef1f720e4ff6ba2fdd5a9ad21eefab44fbde542 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Tue, 16 Jul 2024 19:39:10 +0100 Subject: [PATCH] Add missing parameter; (std::min) --- 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 b28fa6e98811..103a070b7267 100644 --- a/Kernel_23/include/CGAL/Bbox.h +++ b/Kernel_23/include/CGAL/Bbox.h @@ -82,8 +82,8 @@ class Bbox CGAL_assertion(dimension() == bbox.dimension()); T result = 1; for(int i=0; i : public Impl::Bbox, Bbox<0,T>> Bbox(int d = 0 ) { init_values(d); this->init(d ); } Bbox(int d, const T& range) { init_values(d); this->init(d, range); } template - Bbox(int d, I b, I e) { init_values(d); this->init(d, b, ); } + Bbox(int d, I b, I e) { init_values(d); this->init(d, b, e); } protected: void init_values(int d) {