From: Guido Kanschat Date: Fri, 12 Aug 2011 16:03:14 +0000 (+0000) Subject: adapt to changed constructor X-Git-Tag: v8.0.0~3721 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71e5b76aa139761a999dc41733ed5338cd276c02;p=dealii.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) {}