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