From 452f1702c2eb380f021d06db8f0ab60fb89ed2ba Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sun, 14 Jul 2024 15:13:34 +0900 Subject: [PATCH] test: enable to output int_fmt.uppercase --- tests/utility.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/utility.cpp b/tests/utility.cpp index f45eba0..82589cc 100644 --- a/tests/utility.cpp +++ b/tests/utility.cpp @@ -29,10 +29,11 @@ namespace toml std::ostream& operator<<(std::ostream& os, const integer_format_info& fmt) { os << "integer_format_info{"; - os << "fmt = " << fmt.fmt << ", "; - os << "width = " << fmt.width << ", "; - os << "spacer = " << fmt.spacer << ", "; - os << "suffix = \"" << fmt.suffix << "\"}"; + os << "fmt = " << fmt.fmt << ", "; + os << "uppercase = " << fmt.uppercase << ", "; + os << "width = " << fmt.width << ", "; + os << "spacer = " << fmt.spacer << ", "; + os << "suffix = \"" << fmt.suffix << "\"}"; return os; } std::ostream& operator<<(std::ostream& os, const floating_format_info& fmt)