From: prill Date: Thu, 29 Mar 2007 08:51:05 +0000 (+0000) Subject: Added value_type to FullMatrix class. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f7c316a7a96e4a1d5e323284435a8353d23700b;p=dealii-svn.git Added value_type to FullMatrix class. git-svn-id: https://svn.dealii.org/trunk@14604 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/full_matrix.h b/deal.II/lac/include/lac/full_matrix.h index 9f331062e9..7d6e1cda8f 100644 --- a/deal.II/lac/include/lac/full_matrix.h +++ b/deal.II/lac/include/lac/full_matrix.h @@ -61,6 +61,12 @@ template class FullMatrix : public Table<2,number> { public: + /** + * Type of matrix entries. In analogy to + * the STL container classes. + */ + typedef number value_type; + class const_iterator; /**