From eb433a764c36a34a661502ecefa46ced69d20ef1 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Tue, 13 Sep 2022 15:33:32 +0200
Subject: [PATCH] [MeshLib/IO/XDMF] Fix trailing whitespaces in XDMF output.

---
 MeshLib/IO/XDMF/writeXdmf.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/MeshLib/IO/XDMF/writeXdmf.cpp b/MeshLib/IO/XDMF/writeXdmf.cpp
index 9377401ce07..741eed58183 100644
--- a/MeshLib/IO/XDMF/writeXdmf.cpp
+++ b/MeshLib/IO/XDMF/writeXdmf.cpp
@@ -218,10 +218,10 @@ std::function<std::string(std::vector<double>)> write_xdmf(
             R"(
 <Grid Name="Grid" GridType="Uniform">
     <Time Value="{time_value:g}"/>
-    {geometry}
-    {topology}
-    {fix_attributes}
-    {variable_attributes}
+{geometry}
+{topology}
+{fix_attributes}
+{variable_attributes}
 </Grid>)",
             "time_value"_a = time_value, "geometry"_a = geometry,
             "topology"_a = topology, "fix_attributes"_a = constant_attributes,
-- 
GitLab