From 01c64c8a8f737493d872f4c1f1807c0d0db2c965 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 1 Oct 2001 09:06:51 +0000 Subject: [PATCH] Fix. git-svn-id: https://svn.dealii.org/trunk@5125 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/block_vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/include/lac/block_vector.h b/deal.II/lac/include/lac/block_vector.h index 643a8b2b26..f324250ff7 100644 --- a/deal.II/lac/include/lac/block_vector.h +++ b/deal.II/lac/include/lac/block_vector.h @@ -1275,7 +1275,7 @@ namespace BlockVectorIterators // got is true and we are trying // to cast away the // constness. disallow this - Assert (constness==false, ExcCastingAwayConstness()); + Assert (constness==true, ExcCastingAwayConstness()); }; -- 2.39.5