From 8d7b193cf6f980c034ca18e26ef8a99f8600fcfc Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Sat, 20 Apr 2024 13:41:03 +0200 Subject: [PATCH] remove newline in struct output stream op --- include/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/config.hpp b/include/config.hpp index a1218da..a8645fe 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -101,7 +101,7 @@ inline std::ostream &operator<<(std::ostream &os, const name &str) {\ os << #name << " {\n";\ FOR_EACH(STRUCT_FIELD_TO_STRING, name, __VA_ARGS__)\ - os << "}\n";\ + os << "}";\ return os;\ }\