From: Wolfgang Bangerth Date: Wed, 8 Apr 2015 15:57:16 +0000 (-0500) Subject: Avoid the use of deprecated functions. X-Git-Tag: v8.3.0-rc1~307^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dae1736701a0d96270c1dc976a13ac8b56d4b75d;p=dealii.git Avoid the use of deprecated functions. --- diff --git a/include/deal.II/lac/block_sparse_matrix_ez.h b/include/deal.II/lac/block_sparse_matrix_ez.h index 4062b074aa..27b2069207 100644 --- a/include/deal.II/lac/block_sparse_matrix_ez.h +++ b/include/deal.II/lac/block_sparse_matrix_ez.h @@ -336,7 +336,7 @@ inline typename BlockSparseMatrixEZ::size_type BlockSparseMatrixEZ::m () const { - return n_rows(); + return row_indices.total_size(); } @@ -346,7 +346,7 @@ inline typename BlockSparseMatrixEZ::size_type BlockSparseMatrixEZ::n () const { - return n_cols(); + return column_indices.total_size(); }