From d5680eaccb52da5bd1fecad44db8e488b9d146a0 Mon Sep 17 00:00:00 2001 From: TennesseeTrash Date: Fri, 26 Sep 2025 02:06:11 +0200 Subject: [PATCH] Add trailing newline to item print --- LibCBOR/Source/Printer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/LibCBOR/Source/Printer.cpp b/LibCBOR/Source/Printer.cpp index f537da6..49a1e70 100644 --- a/LibCBOR/Source/Printer.cpp +++ b/LibCBOR/Source/Printer.cpp @@ -147,5 +147,6 @@ namespace CBOR void Print(std::ostream &out, CBOR::Item item) { Print(out, 0, std::move(item)); + out << '\n'; } }