From: David Wells <wellsd2@rpi.edu>
Date: Wed, 16 Mar 2016 17:51:02 +0000 (-0400)
Subject: Fix a block read assertion in VectorSpaceVector.
X-Git-Tag: v8.5.0-rc1~1215^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0aa95c86b7c37bf1bb4233e8b67187c8f106fc8c;p=dealii.git

Fix a block read assertion in VectorSpaceVector.

Caught by intel 13.
---

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());
   }
 }