From: Wolfgang Bangerth Date: Mon, 5 Nov 2012 00:54:08 +0000 (+0000) Subject: Partial merge from parallel_mg branch: Trivial changes. X-Git-Tag: v8.0.0~1868 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=120a391a643bfaaf541965d5f5caf3ad98b99a81;p=dealii.git Partial merge from parallel_mg branch: Trivial changes. git-svn-id: https://svn.dealii.org/trunk@27380 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/lac/sparse_matrix.h b/deal.II/include/deal.II/lac/sparse_matrix.h index f9217a8a50..07b8ee7929 100644 --- a/deal.II/include/deal.II/lac/sparse_matrix.h +++ b/deal.II/include/deal.II/lac/sparse_matrix.h @@ -2566,15 +2566,14 @@ namespace SparseMatrixIterators template inline - Accessor::Reference:: - Reference (const Accessor *accessor, - const bool) - : - accessor (accessor) - {} - - - + Accessor::Reference::Reference ( + const Accessor *accessor, + const bool) + : + accessor (accessor) + {} + + template inline Accessor::Reference::operator number() const diff --git a/deal.II/include/deal.II/lac/sparsity_pattern.h b/deal.II/include/deal.II/lac/sparsity_pattern.h index 01c2df6978..3c72449364 100644 --- a/deal.II/include/deal.II/lac/sparsity_pattern.h +++ b/deal.II/include/deal.II/lac/sparsity_pattern.h @@ -83,25 +83,26 @@ namespace internals } - +/** + * Iterators on sparsity patterns + */ namespace SparsityPatternIterators { // forward declaration class Iterator; - /** - * Accessor class for iterators into - * sparsity patterns. This class is also - * the base class for both const and - * non-const accessor classes into sparse - * matrices. - * - * Note that this class only allow read - * access to elements, providing their - * row and column number. It does not - * allow to modify the sparsity pattern - * itself. - */ +/** + * Accessor class for iterators into sparsity patterns. This class is + * also the base class for both const and non-const accessor classes + * into sparse matrices. + * + * Note that this class only allow read access to elements, providing + * their row and column number. It does not allow to modify the + * sparsity pattern itself. + * + * @author Wolfgang Bangerth + * @date 2004 + */ class Accessor { public: