From ca51545de0bafedf4c1e607d204ce0824e034f9d Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Thu, 9 Apr 2020 10:58:47 +0200
Subject: [PATCH] [MGTL] Clang format on output.

---
 MeshGeoToolsLib/BoundaryElementsAtPoint.cpp | 10 ++++------
 MeshGeoToolsLib/IdentifySubdomainMesh.cpp   |  6 ++----
 2 files changed, 6 insertions(+), 10 deletions(-)

diff --git a/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp b/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp
index dcbb6ef334f..e0ecfe0b745 100644
--- a/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp
+++ b/MeshGeoToolsLib/BoundaryElementsAtPoint.cpp
@@ -54,9 +54,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint(
         OGS_FATAL(
             "BoundaryElementsAtPoint: the mesh node searcher found {:d} points "
             "near the requested point ({:f}, {:f}, {:f}) in the mesh, while "
-            "exactly "
-            "one is expected. Node  (id={:d}) ({:f}, {:f}, {:f}) has distance "
-            "{:f}.",
+            "exactly one is expected. Node  (id={:d}) ({:f}, {:f}, {:f}) has "
+            "distance {:f}.",
             node_ids.size(), _point[0], _point[1], _point[2],
             mesh_nodes[nearest_node_id]->getID(),
             (*mesh_nodes[nearest_node_id])[0],
@@ -67,9 +66,8 @@ BoundaryElementsAtPoint::BoundaryElementsAtPoint(
     WARN(
         "BoundaryElementsAtPoint: the mesh node searcher found {:d} points "
         "near the requested point ({:f}, {:f}, {:f}) in the mesh, while "
-        "exactly "
-        "one is expected. Node  (id={:d}) ({:f}, {:f}, {:f}) has distance "
-        "{:f}.",
+        "exactly one is expected. Node  (id={:d}) ({:f}, {:f}, {:f}) has "
+        "distance {:f}.",
         node_ids.size(), _point[0], _point[1], _point[2],
         mesh_nodes[nearest_node_id]->getID(), (*mesh_nodes[nearest_node_id])[0],
         (*mesh_nodes[nearest_node_id])[1], (*mesh_nodes[nearest_node_id])[2],
diff --git a/MeshGeoToolsLib/IdentifySubdomainMesh.cpp b/MeshGeoToolsLib/IdentifySubdomainMesh.cpp
index 77a9261b44f..ee3977f59b7 100644
--- a/MeshGeoToolsLib/IdentifySubdomainMesh.cpp
+++ b/MeshGeoToolsLib/IdentifySubdomainMesh.cpp
@@ -37,8 +37,7 @@ std::vector<std::size_t> identifySubdomainMeshNodes(
         OGS_FATAL(
             "Expected to find exactly one node in the bulk mesh for each node "
             "of the subdomain; Found {:d} nodes in the bulk mesh out of {:d} "
-            "nodes "
-            "in the subdomain.",
+            "nodes in the subdomain.",
             bulk_node_ids.size(), subdomain_mesh.getNumberOfNodes());
     }
 
@@ -174,8 +173,7 @@ void updateOrCheckExistingSubdomainProperty(
     //
     WARN(
         "There is already a '{:s}' property present in the subdomain mesh "
-        "'{:s}' "
-        "and it is not equal to the newly computed values.",
+        "'{:s}' and it is not equal to the newly computed values.",
         property_name.c_str(),
         mesh.getName().c_str());
 
-- 
GitLab