| 37 | struct WriteObject { |
| 38 | JsonWriter& writer; |
| 39 | WriteObject(JsonWriter& w) |
| 40 | : writer(w) |
| 41 | { |
| 42 | writer.StartObject(); |
| 43 | } |
| 44 | template <typename T> |
| 45 | WriteObject(JsonWriter& w, T& name) |
| 46 | : writer(w) |
nothing calls this directly
no test coverage detected