| 5286 | } |
| 5287 | |
| 5288 | JSONCPP_STRING writeString(StreamWriter::Factory const& builder, Value const& root) { |
| 5289 | JSONCPP_OSTRINGSTREAM sout; |
| 5290 | StreamWriterPtr const writer(builder.newStreamWriter()); |
| 5291 | writer->write(root, &sout); |
| 5292 | return sout.str(); |
| 5293 | } |
| 5294 | |
| 5295 | JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM& sout, Value const& root) { |
| 5296 | StreamWriterBuilder builder; |
no test coverage detected