Update for jart/json.cpp change

This commit is contained in:
Peter Johnson
2026-03-29 15:38:18 -07:00
parent de3e211fdb
commit 9ca93fa190
120 changed files with 1240 additions and 1087 deletions

View File

@@ -35,7 +35,7 @@ void PrintTo(std::span<T> val, ::std::ostream* os) {
}
inline void PrintTo(const json& val, ::std::ostream* os) {
*os << val.dump();
*os << val.to_string();
}
} // namespace wpi::util