From: Wolfgang Bangerth Date: Mon, 1 Oct 2001 09:09:56 +0000 (+0000) Subject: Fix yet another problem. X-Git-Tag: v8.0.0~18692 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e2c88d936a70877fa1a93f9761d5a63e84d6a8a;p=dealii.git Fix yet another problem. git-svn-id: https://svn.dealii.org/trunk@5126 0785d39b-7218-0410-832d-ea1e28bc413d --- 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),