mirror of https://github.com/CGAL/cgal
Fix eating extra whitespace in CORE::BigRat
This commit is contained in:
parent
cd7907194f
commit
12fd01defd
|
|
@ -198,10 +198,6 @@ io_read (std::istream &i, mpq_ptr q)
|
||||||
ok = true;
|
ok = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i.flags() & ios::skipws)
|
|
||||||
while (isspace(c) && i.get(c)) // skip whitespace
|
|
||||||
;
|
|
||||||
|
|
||||||
if (c == '/') // there's a denominator
|
if (c == '/') // there's a denominator
|
||||||
{
|
{
|
||||||
bool zero2 = false;
|
bool zero2 = false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue