mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-14 08:31:04 +00:00
fix: typo in format output
This commit is contained in:
parent
ff3d866728
commit
12c0f379f2
@ -267,7 +267,7 @@ TOML11_INLINE std::ostream& operator<<(std::ostream& os, const table_format f)
|
||||
case table_format::implicit : {os << "implicit" ; break;}
|
||||
default:
|
||||
{
|
||||
os << "unknown array_format: " << static_cast<std::uint8_t>(f);
|
||||
os << "unknown table_format: " << static_cast<std::uint8_t>(f);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -641,7 +641,7 @@ TOML11_INLINE std::ostream& operator<<(std::ostream& os, const table_format f)
|
||||
case table_format::implicit : {os << "implicit" ; break;}
|
||||
default:
|
||||
{
|
||||
os << "unknown array_format: " << static_cast<std::uint8_t>(f);
|
||||
os << "unknown table_format: " << static_cast<std::uint8_t>(f);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user