From 7e2c88d936a70877fa1a93f9761d5a63e84d6a8a Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 1 Oct 2001 09:09:56 +0000 Subject: [PATCH] Fix yet another problem. git-svn-id: https://svn.dealii.org/trunk@5126 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 f324250ff7..8097e63c2c 100644 --- a/deal.II/lac/include/lac/block_vector.h +++ b/deal.II/lac/include/lac/block_vector.h @@ -1263,7 +1263,7 @@ namespace BlockVectorIterators Iterator:: Iterator (const InverseConstnessIterator &c) : - parent (c.parent), + parent (const_cast(c.parent)), global_index (c.global_index), current_block (c.current_block), index_within_block (c.index_within_block), -- 2.39.5