From 2e829b5a7e4ae2b1aea065b04702ba15127de18d Mon Sep 17 00:00:00 2001 From: guido Date: Tue, 27 Apr 1999 15:28:23 +0000 Subject: [PATCH] entry_type changed to value_type git-svn-id: https://svn.dealii.org/trunk@1214 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/precondition.h | 2 +- deal.II/lac/include/lac/sparse_matrix.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/precondition.h b/deal.II/lac/include/lac/precondition.h index 74dc66a1c4..920295ea58 100644 --- a/deal.II/lac/include/lac/precondition.h +++ b/deal.II/lac/include/lac/precondition.h @@ -94,7 +94,7 @@ class PreconditionRelaxation * function of the matrix. */ typedef void ( MATRIX::* function_ptr)(VECTOR&, const VECTOR&, - typename MATRIX::entry_type) const; + typename MATRIX::value_type) const; /** * Constructor. diff --git a/deal.II/lac/include/lac/sparse_matrix.h b/deal.II/lac/include/lac/sparse_matrix.h index 8cd313955c..268ab93e5a 100644 --- a/deal.II/lac/include/lac/sparse_matrix.h +++ b/deal.II/lac/include/lac/sparse_matrix.h @@ -428,7 +428,7 @@ class SparseMatrix /** * Type of matrix entries. */ - typedef number entry_type; + typedef number value_type; /** * Constructor; initializes the matrix to -- 2.39.5