| 1089 | |
| 1090 | template <> |
| 1091 | void Out<NJson::TJsonValue>(IOutputStream& out, const NJson::TJsonValue& v) { |
| 1092 | NJsonWriter::TBuf buf(NJsonWriter::HEM_DONT_ESCAPE_HTML, &out); |
| 1093 | buf.WriteJsonValue(&v); |
| 1094 | } |
nothing calls this directly
no test coverage detected