From a90f9e55ca486e1681f47e407c9f6f6b7b9c4130 Mon Sep 17 00:00:00 2001 From: werto87 Date: Wed, 5 Jun 2024 16:52:20 +0200 Subject: [PATCH] removed debug print --- confu_json/to_json.hxx | 1 - 1 file changed, 1 deletion(-) diff --git a/confu_json/to_json.hxx b/confu_json/to_json.hxx index 15086c4..e0574f7 100644 --- a/confu_json/to_json.hxx +++ b/confu_json/to_json.hxx @@ -98,7 +98,6 @@ handleArray (boost::json::array &result, T const &t) if constexpr (std::is_enum_v) { tmp[std::string{ type_name () }] = std::string{ magic_enum::enum_name (element.value ()) }; - std::cout << tmp << std::endl; result.emplace_back (tmp); } else