From 112b633ad646bbcf09c0b74b1f09c53fe81d21fa Mon Sep 17 00:00:00 2001 From: Sebastien Loriot Date: Mon, 11 Oct 2021 17:16:04 +0200 Subject: [PATCH] add tmp assertions --- CGAL_Core/include/CGAL/CORE/BigRat.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CGAL_Core/include/CGAL/CORE/BigRat.h b/CGAL_Core/include/CGAL/CORE/BigRat.h index e5379f119ff..8e1eb82e171 100644 --- a/CGAL_Core/include/CGAL/CORE/BigRat.h +++ b/CGAL_Core/include/CGAL/CORE/BigRat.h @@ -396,11 +396,13 @@ inline bool isDivisible(const BigRat& x, const BigRat& y) { } inline BigRat operator<<(const BigRat& a, unsigned long ul) { BigRat r; + assert(false); //AF todo no << for Q r.get_mp() = a.get_mp() << int(ul) ; return r; } inline BigRat operator>>(const BigRat& a, unsigned long ul) { BigRat r; + assert(false); // AF todo no >> for Q r.get_mp() = a.get_mp() >> ul; return r; }