| 4806 | } |
| 4807 | |
| 4808 | std::string writeString(StreamWriter::Factory const& builder, Value const& root) { |
| 4809 | std::ostringstream sout; |
| 4810 | StreamWriterPtr const writer(builder.newStreamWriter()); |
| 4811 | writer->write(root, &sout); |
| 4812 | return sout.str(); |
| 4813 | } |
| 4814 | |
| 4815 | std::ostream& operator<<(std::ostream& sout, Value const& root) { |
| 4816 | StreamWriterBuilder builder; |
nothing calls this directly
no test coverage detected