From: wolf Date: Mon, 9 Sep 2002 21:47:52 +0000 (+0000) Subject: Delete erroneous assertion: after reading everything in block_read, X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28abe56c010532520807b1445071d26d93809195;p=dealii-svn.git Delete erroneous assertion: after reading everything in block_read, the input stream may not return true after conversion to bool, if we have reached the end of the file. The assertion was thus wrong. git-svn-id: https://svn.dealii.org/trunk@6376 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/vector.templates.h b/deal.II/lac/include/lac/vector.templates.h index 39c9a2372a..685fc90e0c 100644 --- a/deal.II/lac/include/lac/vector.templates.h +++ b/deal.II/lac/include/lac/vector.templates.h @@ -647,7 +647,6 @@ void Vector::block_read (std::istream &in) // in >> c; in.read (&c, 1); AssertThrow (c==']', ExcIO()); - AssertThrow (in, ExcIO()); }