| 1217 | } |
| 1218 | |
| 1219 | JSONCPP_STRING writeString(StreamWriter::Factory const& builder, Value const& root) { |
| 1220 | JSONCPP_OSTRINGSTREAM sout; |
| 1221 | StreamWriterPtr const writer(builder.newStreamWriter()); |
| 1222 | writer->write(root, &sout); |
| 1223 | return sout.str(); |
| 1224 | } |
| 1225 | |
| 1226 | JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM& sout, Value const& root) { |
| 1227 | StreamWriterBuilder builder; |
no test coverage detected