| 72 | { |
| 73 | |
| 74 | json_patch::json_patch(json &&patch) |
| 75 | : j_(std::move(patch)) |
| 76 | { |
| 77 | validateJsonPatch(j_); |
| 78 | } |
| 79 | |
| 80 | json_patch::json_patch(const json &patch) |
| 81 | : j_(std::move(patch)) |
nothing calls this directly
no outgoing calls
no test coverage detected