| 1248 | } |
| 1249 | |
| 1250 | String writeString(StreamWriter::Factory const& factory, Value const& root) { |
| 1251 | OStringStream sout; |
| 1252 | StreamWriterPtr const writer(factory.newStreamWriter()); |
| 1253 | writer->write(root, &sout); |
| 1254 | return std::move(sout).str(); |
| 1255 | } |
| 1256 | |
| 1257 | OStream& operator<<(OStream& sout, Value const& root) { |
| 1258 | StreamWriterBuilder builder; |
no test coverage detected
searching dependent graphs…