remove newline in struct output stream op

This commit is contained in:
jacekpoz 2024-04-20 13:41:03 +02:00
parent c5491dbc9f
commit 8d7b193cf6
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -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;\
}\