From: David Wells Date: Wed, 19 Aug 2015 18:08:27 +0000 (-0400) Subject: Remove an unneeded const_cast. X-Git-Tag: v8.4.0-rc2~585^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1387%2Fhead;p=dealii.git Remove an unneeded const_cast. --- diff --git a/include/deal.II/lac/block_vector_base.h b/include/deal.II/lac/block_vector_base.h index 241af0b188..b4acb3fa16 100644 --- a/include/deal.II/lac/block_vector_base.h +++ b/include/deal.II/lac/block_vector_base.h @@ -1006,7 +1006,7 @@ namespace internal Iterator:: Iterator (const Iterator &c) : - parent (const_cast(c.parent)), + parent (c.parent), global_index (c.global_index), current_block (c.current_block), index_within_block (c.index_within_block),