From ece82cf95fd842c53a718a16cd4e72f9b35d1bb1 Mon Sep 17 00:00:00 2001
From: "Joachim Wuttke (o)" <j.wuttke@fz-juelich.de>
Date: Thu, 16 Feb 2023 13:13:40 +0100
Subject: [PATCH] corr error in \!1351

---
 Sim/Export/MaterialKeyHandler.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Sim/Export/MaterialKeyHandler.cpp b/Sim/Export/MaterialKeyHandler.cpp
index ab7e3304347..2c6cc971b73 100644
--- a/Sim/Export/MaterialKeyHandler.cpp
+++ b/Sim/Export/MaterialKeyHandler.cpp
@@ -26,7 +26,7 @@ void MaterialKeyHandler::insertMaterial(const Material* mat)
     m_Mat2Unique.emplace(mat, mat);
 
     const std::string key = "material_" + mat->materialName();
-    ASSERT(!m_Key2Mat.count(key)) // material must not be exported more than once
+    ASSERT(!m_Key2Mat.count(key)); // material must not be exported more than once
     m_Key2Mat.emplace(key, mat);
 }
 
-- 
GitLab