test: enable to output int_fmt.uppercase

This commit is contained in:
ToruNiina
2024-07-14 15:13:34 +09:00
parent 0f0f9cf3c1
commit 452f1702c2

View File

@@ -30,6 +30,7 @@ std::ostream& operator<<(std::ostream& os, const integer_format_info& fmt)
{ {
os << "integer_format_info{"; os << "integer_format_info{";
os << "fmt = " << fmt.fmt << ", "; os << "fmt = " << fmt.fmt << ", ";
os << "uppercase = " << fmt.uppercase << ", ";
os << "width = " << fmt.width << ", "; os << "width = " << fmt.width << ", ";
os << "spacer = " << fmt.spacer << ", "; os << "spacer = " << fmt.spacer << ", ";
os << "suffix = \"" << fmt.suffix << "\"}"; os << "suffix = \"" << fmt.suffix << "\"}";