| 717 | } |
| 718 | |
| 719 | StringContainer writeString(StreamWriter::Factory const& factory, Value const& root) { |
| 720 | OStringStream sout; |
| 721 | StreamWriterPtr const writer(factory.newStreamWriter()); |
| 722 | writer->write(root, &sout); |
| 723 | return std::move(sout).str(); |
| 724 | } |
| 725 | |
| 726 | OStream& operator<<(OStream& sout, Value const& root) { |
| 727 | StreamWriterBuilder builder; |
no test coverage detected