From 0aa95c86b7c37bf1bb4233e8b67187c8f106fc8c Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 16 Mar 2016 13:51:02 -0400 Subject: [PATCH] Fix a block read assertion in VectorSpaceVector. Caught by intel 13. --- include/deal.II/lac/la_vector.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/lac/la_vector.templates.h b/include/deal.II/lac/la_vector.templates.h index 9c69b9c78d..95e8465435 100644 --- a/include/deal.II/lac/la_vector.templates.h +++ b/include/deal.II/lac/la_vector.templates.h @@ -398,7 +398,7 @@ namespace LinearAlgebra // in >> c; in.read(&c,1); - AssertThrow(c=']', ExcIO()); + AssertThrow(c==']', ExcIO()); } } -- 2.39.5