From: Winnifried Wollner <wollner@mathematik.tu-darmstadt.de>
Date: Wed, 30 Oct 2019 13:28:03 +0000 (+0100)
Subject: Indentation fixed
X-Git-Tag: v9.2.0-rc1~930^2~3
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b70e8fb09e23bd22b6682cd0ff73fb05ad386b5;p=dealii.git

Indentation fixed
---

diff --git a/include/deal.II/numerics/vector_tools.templates.h b/include/deal.II/numerics/vector_tools.templates.h
index f5288e9e3e..663b5ce086 100644
--- a/include/deal.II/numerics/vector_tools.templates.h
+++ b/include/deal.II/numerics/vector_tools.templates.h
@@ -5413,7 +5413,8 @@ namespace VectorTools
       // For nedelec elements FE_Nedelec<dim> (0) returns fe.degree = 1.
       // For FESystem get the degree from the base_element
       // indicated by the first_vector_component
-      const unsigned int degree = fe.base_element(base_indices.first).degree - 1;
+      const unsigned int degree =
+        fe.base_element(base_indices.first).degree - 1;
 
       // Find DoFs we want to constrain:
       // There are fe.dofs_per_line DoFs associated with the
@@ -5668,7 +5669,8 @@ namespace VectorTools
           base_indices.second = (first_vector_component - fe_index_old) /
                                 fe.base_element(i).n_components();
         }
-      const unsigned int degree = fe.base_element(base_indices.first).degree - 1;
+      const unsigned int degree =
+        fe.base_element(base_indices.first).degree - 1;
 
       switch (dim)
         {
@@ -6017,11 +6019,11 @@ namespace VectorTools
                 }
 
               // Solve linear system:
-              if(associated_face_dofs > 0)
-	      {
-		face_matrix_inv.invert(face_matrix);
-		face_matrix_inv.vmult(face_solution, face_rhs);
-	      }
+              if (associated_face_dofs > 0)
+                {
+                  face_matrix_inv.invert(face_matrix);
+                  face_matrix_inv.vmult(face_solution, face_rhs);
+                }
 
               // Store computed DoFs:
               for (unsigned int associated_face_dof = 0;