From 36ec04c00fa540fcee0f2cff1f7b81dd8a98101a Mon Sep 17 00:00:00 2001
From: Ferenc Szontágh <szf@fsociety.hu>
Date: Thu, 17 Apr 2025 18:44:58 +0000
Subject: [PATCH] some refactor

---
 src/Interpreter/OperationContainer.hpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/Interpreter/OperationContainer.hpp b/src/Interpreter/OperationContainer.hpp
index 20f9e2c..a8646a0 100644
--- a/src/Interpreter/OperationContainer.hpp
+++ b/src/Interpreter/OperationContainer.hpp
@@ -117,7 +117,7 @@
     auto end() const { return _operations.end(); }
 
     static std::string dump()  {
-        std::string result = "";
+        std::string result;
         for (const auto & [_, table] : Operations::Container::instance()->_operations) {
             result += "Namespace: " + _ + "\n";
             for (const auto & operation : table) {

--
Gitblit v1.9.3