From d71e6964ee631b9b4ba294e81f01ac40d31f60e5 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Tue, 9 Jun 2020 09:26:30 +0200
Subject: [PATCH] [MGTL] IdentifySubdomainMesh: fix warning.

warning: statement should be inside braces [google-readability-braces-around-statements]
---
 MeshGeoToolsLib/IdentifySubdomainMesh.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/MeshGeoToolsLib/IdentifySubdomainMesh.cpp b/MeshGeoToolsLib/IdentifySubdomainMesh.cpp
index bf9ca67a1ea..08ddce77bf8 100644
--- a/MeshGeoToolsLib/IdentifySubdomainMesh.cpp
+++ b/MeshGeoToolsLib/IdentifySubdomainMesh.cpp
@@ -128,7 +128,9 @@ std::vector<std::vector<std::size_t>> identifySubdomainMeshElements(
                 "Corresponding bulk mesh node ids are:",
                 e->getID());
             for (auto const i : element_node_ids_bulk)
+            {
                 ERR("\t{:d}", i);
+            }
             OGS_FATAL(
                 "Expect at least one element to be found in the bulk mesh.");
         }
-- 
GitLab