From 50c164eecfa25d50cdff70bcb918810ce42be10e Mon Sep 17 00:00:00 2001
From: Daniel Arndt <daniel.arndt@iwr.uni-heidelberg.de>
Date: Sun, 14 May 2017 15:30:12 +0200
Subject: [PATCH] Remove deprecated BlockSparseMatrixEZ<Number>::n_rows/n_cols

---
 .../incompatibilities/20170514DanielArndt-1   |  5 +++
 include/deal.II/lac/block_sparse_matrix_ez.h  | 38 -------------------
 2 files changed, 5 insertions(+), 38 deletions(-)
 create mode 100644 doc/news/changes/incompatibilities/20170514DanielArndt-1

diff --git a/doc/news/changes/incompatibilities/20170514DanielArndt-1 b/doc/news/changes/incompatibilities/20170514DanielArndt-1
new file mode 100644
index 0000000000..71dbabcc58
--- /dev/null
+++ b/doc/news/changes/incompatibilities/20170514DanielArndt-1
@@ -0,0 +1,5 @@
+Changed: The deprecated functions BlockSparseMatrixEZ::n_rows()
+and BlockSparseMatrixEZ::n_cols() have been removed.
+Use BlockSparseMatrixEZ::m() and BlockSparseMatrixEZ::n() instead.
+<br>
+(Daniel Arndt, 2017/05/14)
diff --git a/include/deal.II/lac/block_sparse_matrix_ez.h b/include/deal.II/lac/block_sparse_matrix_ez.h
index 6c2b2b2941..8e4bf52fe3 100644
--- a/include/deal.II/lac/block_sparse_matrix_ez.h
+++ b/include/deal.II/lac/block_sparse_matrix_ez.h
@@ -149,24 +149,6 @@ public:
    */
   bool empty () const;
 
-  /**
-   * Return number of rows of this matrix, which equals the dimension of the
-   * codomain (or range) space. It is the sum of the number of rows over the
-   * sub-matrix blocks of this matrix.
-   *
-   * @deprecated Use m() instead.
-   */
-  size_type n_rows () const DEAL_II_DEPRECATED;
-
-  /**
-   * Return number of columns of this matrix, which equals the dimension of
-   * the domain space. It is the sum of the number of columns over the sub-
-   * matrix blocks of this matrix.
-   *
-   * @deprecated Use n() instead.
-   */
-  size_type n_cols () const DEAL_II_DEPRECATED;
-
   /**
    * Return number of rows of this matrix, which equals the dimension of the
    * codomain (or range) space. It is the sum of the number of rows over the
@@ -277,16 +259,6 @@ BlockSparseMatrixEZ<Number>::n_block_rows () const
 
 
 
-template <typename Number>
-inline
-typename BlockSparseMatrixEZ<Number>::size_type
-BlockSparseMatrixEZ<Number>::n_rows () const
-{
-  return row_indices.total_size();
-}
-
-
-
 template <typename Number>
 inline
 unsigned int
@@ -297,16 +269,6 @@ BlockSparseMatrixEZ<Number>::n_block_cols () const
 
 
 
-template <typename Number>
-inline
-typename BlockSparseMatrixEZ<Number>::size_type
-BlockSparseMatrixEZ<Number>::n_cols () const
-{
-  return column_indices.total_size();
-}
-
-
-
 template <typename Number>
 inline
 SparseMatrixEZ<Number> &
-- 
2.39.5