From dae1736701a0d96270c1dc976a13ac8b56d4b75d Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 8 Apr 2015 10:57:16 -0500 Subject: [PATCH] Avoid the use of deprecated functions. --- include/deal.II/lac/block_sparse_matrix_ez.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } -- 2.39.5