From 28abe56c010532520807b1445071d26d93809195 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 9 Sep 2002 21:47:52 +0000 Subject: [PATCH] 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 --- deal.II/lac/include/lac/vector.templates.h | 1 - 1 file changed, 1 deletion(-) 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()); } -- 2.39.5