From a4d713a386c4879583e0180643ac350b68356037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 24 Jan 2024 15:53:11 +0100 Subject: [PATCH] do not skip whitespace while reading quotient --- Number_types/include/CGAL/Quotient.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Number_types/include/CGAL/Quotient.h b/Number_types/include/CGAL/Quotient.h index 8c117c2fb6d8..56e3432bfba3 100644 --- a/Number_types/include/CGAL/Quotient.h +++ b/Number_types/include/CGAL/Quotient.h @@ -421,7 +421,6 @@ operator>>(std::istream& in, Quotient& r) NT num,den=1; in >> num; if(!in) return in; - std::istream::sentry s(in); // skip whitespace if(in.peek()!='/'){ if(!in.good()){ in.clear(std::ios_base::eofbit);