From: Wolfgang Bangerth Date: Mon, 9 Sep 2002 21:47:52 +0000 (+0000) Subject: Delete erroneous assertion: after reading everything in block_read, X-Git-Tag: v8.0.0~17602 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa2c2ed53db099023977389c56e48f35e4dfd7d8;p=dealii.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()); }