From 8d8f688707981ccb643bd391d6fbe37c69077acd Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth 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