From: wolf Date: Wed, 30 Apr 2003 15:33:22 +0000 (+0000) Subject: Make aux a value, rather than a reference. This will most probably not X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2e725e79f8a0f08ae5121fe343e87134afcc76f;p=dealii-svn.git Make aux a value, rather than a reference. This will most probably not have worked before. git-svn-id: https://svn.dealii.org/trunk@7502 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/block_matrix_array.h b/deal.II/lac/include/lac/block_matrix_array.h index 00cc1e29ad..c51fc9ef07 100644 --- a/deal.II/lac/include/lac/block_matrix_array.h +++ b/deal.II/lac/include/lac/block_matrix_array.h @@ -618,7 +618,7 @@ BlockTrianglePrecondition::vmult_add ( Assert (src.n_blocks() == n_block_cols(), ExcDimensionMismatch(src.n_blocks(), n_block_cols())); - BlockVector& aux; + BlockVector aux; aux.reinit(dst); vmult(aux, src); dst.add(aux);