mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-16 16:28:09 +08:00
test: enable to output int_fmt.uppercase
This commit is contained in:
@@ -29,10 +29,11 @@ namespace toml
|
|||||||
std::ostream& operator<<(std::ostream& os, const integer_format_info& fmt)
|
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 << "width = " << fmt.width << ", ";
|
os << "uppercase = " << fmt.uppercase << ", ";
|
||||||
os << "spacer = " << fmt.spacer << ", ";
|
os << "width = " << fmt.width << ", ";
|
||||||
os << "suffix = \"" << fmt.suffix << "\"}";
|
os << "spacer = " << fmt.spacer << ", ";
|
||||||
|
os << "suffix = \"" << fmt.suffix << "\"}";
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
std::ostream& operator<<(std::ostream& os, const floating_format_info& fmt)
|
std::ostream& operator<<(std::ostream& os, const floating_format_info& fmt)
|
||||||
|
Reference in New Issue
Block a user