From: kanschat Date: Fri, 12 Aug 2011 16:03:14 +0000 (+0000) Subject: adapt to changed constructor X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=083e09b2fa6f7f887d736f3f14a5f981ba3edad9;p=dealii-svn.git adapt to changed constructor git-svn-id: https://svn.dealii.org/trunk@24047 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/block_sparse_matrix_ez.templates.h b/deal.II/include/deal.II/lac/block_sparse_matrix_ez.templates.h index f9cf8019e9..2ee219a6ec 100644 --- a/deal.II/include/deal.II/lac/block_sparse_matrix_ez.templates.h +++ b/deal.II/include/deal.II/lac/block_sparse_matrix_ez.templates.h @@ -22,9 +22,6 @@ DEAL_II_NAMESPACE_OPEN template BlockSparseMatrixEZ::BlockSparseMatrixEZ () - : - row_indices (0), - column_indices (0) {} @@ -34,8 +31,8 @@ BlockSparseMatrixEZ:: BlockSparseMatrixEZ (const unsigned int rows, const unsigned int cols) : - row_indices (rows), - column_indices (cols) + row_indices (rows, 0), + column_indices (cols, 0) {}