From 89c9f902ff974fccefca87bcd52bab8d73bcc4c8 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 9 Mar 2023 14:14:37 +0000 Subject: [PATCH] Use CGAL_assertion_msg --- CGAL_Core/include/CGAL/CORE/poly/Sturm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CGAL_Core/include/CGAL/CORE/poly/Sturm.h b/CGAL_Core/include/CGAL/CORE/poly/Sturm.h index 76f99848ce9..99e78d6a930 100644 --- a/CGAL_Core/include/CGAL/CORE/poly/Sturm.h +++ b/CGAL_Core/include/CGAL/CORE/poly/Sturm.h @@ -679,7 +679,7 @@ public: stepsize++; // heuristic } while ((del != 0) && ((del.uMSB() >= -prec) && (count >0))) ; - CGAL_assertion(count != 0, "newtonIterE: reached count=0"); + CGAL_assertion_msg(count != 0, "newtonIterE: reached count=0"); del = BigFloat(core_abs(del.m()), err, del.exp() ); del.makeCeilExact(); return val;