| 5361 | } |
| 5362 | |
| 5363 | JSONCPP_STRING writeString(StreamWriter::Factory const& builder, Value const& root) { |
| 5364 | JSONCPP_OSTRINGSTREAM sout; |
| 5365 | StreamWriterPtr const writer(builder.newStreamWriter()); |
| 5366 | writer->write(root, &sout); |
| 5367 | return sout.str(); |
| 5368 | } |
| 5369 | |
| 5370 | JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM& sout, Value const& root) { |
| 5371 | StreamWriterBuilder builder; |
no test coverage detected