| 5336 | } |
| 5337 | |
| 5338 | String writeString(StreamWriter::Factory const& factory, Value const& root) { |
| 5339 | OStringStream sout; |
| 5340 | StreamWriterPtr const writer(factory.newStreamWriter()); |
| 5341 | writer->write(root, &sout); |
| 5342 | return std::move(sout).str(); |
| 5343 | } |
| 5344 | |
| 5345 | OStream& operator<<(OStream& sout, Value const& root) { |
| 5346 | StreamWriterBuilder builder; |
no test coverage detected