From 30bc9df96e46987c88f5b004f6ec430c0e4837b3 Mon Sep 17 00:00:00 2001
From: bangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Mon, 5 Nov 2012 00:54:08 +0000
Subject: [PATCH] Partial merge from parallel_mg branch: Trivial changes.

git-svn-id: https://svn.dealii.org/trunk@27380 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/include/deal.II/lac/sparse_matrix.h   | 17 +++++------
 .../include/deal.II/lac/sparsity_pattern.h    | 29 ++++++++++---------
 2 files changed, 23 insertions(+), 23 deletions(-)

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 <typename number>
   inline
-  Accessor<number, false>::Reference::
-  Reference (const Accessor *accessor,
-             const bool)
-                  :
-                  accessor (accessor)
-  {}
-
-
-
+  Accessor<number, false>::Reference::Reference (
+    const Accessor *accessor,
+    const bool)
+    :
+    accessor (accessor)
+    {}
+  
+  
   template <typename number>
   inline
   Accessor<number, false>::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:
-- 
2.39.5