From ae9494850d109bee4febedac8447e166f3a9ad4a Mon Sep 17 00:00:00 2001
From: Wenqing Wang <wenqing.wang@ufz.de>
Date: Wed, 7 Oct 2015 12:39:09 +0200
Subject: [PATCH] [AssmLib] Split some long comment lines.

---
 AssemblerLib/MeshComponentMap.cpp | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/AssemblerLib/MeshComponentMap.cpp b/AssemblerLib/MeshComponentMap.cpp
index a717a46cfac..12d0389f996 100644
--- a/AssemblerLib/MeshComponentMap.cpp
+++ b/AssemblerLib/MeshComponentMap.cpp
@@ -60,7 +60,8 @@ MeshComponentMap::MeshComponentMap(
                                 comp_id, signed_global_id) );
                 }
 
-                // Note: If the cells are really used (e.g. for the mixed FEM), the following global cell index must be reconsidered
+                // Note: If the cells are really used (e.g. for the mixed FEM),
+                // the following global cell index must be reconsidered
                 // according to the employed cell indexing method.
                 for (std::size_t j=0; j<mesh_subset.getNElements(); j++)
                     _dict.insert(Line(Location(mesh_id, MeshLib::MeshItemType::Cell, j),
@@ -79,13 +80,14 @@ MeshComponentMap::MeshComponentMap(
                                 comp_id, signed_global_id) );
                 }
 
-                // Note: If the cells are really used (e.g. for the mixed FEM), the following global cell index must be reconsidered
+                // Note: If the cells are really used (e.g. for the mixed FEM),
+                // the following global cell index must be reconsidered
                 // according to the employed cell indexing method.
                 for (std::size_t j=0; j<mesh_subset.getNElements(); j++)
                     _dict.insert(Line(Location(mesh_id, MeshLib::MeshItemType::Cell, j),
                                  comp_id, cell_index++));
-
-                global_index_offset += mesh.getNGlobalNodes(); // Include base nodes. Should be considered again for a general case.
+                // Include base nodes.
+                global_index_offset += mesh.getNGlobalNodes();
             }
 
             _num_global_dof += mesh.getNGlobalNodes();
-- 
GitLab