| 5420 | } |
| 5421 | |
| 5422 | JSONCPP_STRING writeString(StreamWriter::Factory const& builder, |
| 5423 | Value const& root) { |
| 5424 | JSONCPP_OSTRINGSTREAM sout; |
| 5425 | StreamWriterPtr const writer(builder.newStreamWriter()); |
| 5426 | writer->write(root, &sout); |
| 5427 | return sout.str(); |
| 5428 | } |
| 5429 | |
| 5430 | JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM& sout, Value const& root) { |
| 5431 | StreamWriterBuilder builder; |
no test coverage detected