| 310 | } |
| 311 | |
| 312 | JsonErrors::ErrorGenerator INVALID_ROOT_OBJECT( |
| 313 | JsonErrors::ObjectError errorType, Json::Value::Members const& extraFields) |
| 314 | { |
| 315 | return JsonErrors::INVALID_NAMED_OBJECT( |
| 316 | [](Json::Value const*, cmJSONState*) -> std::string { |
| 317 | return "root object"; |
| 318 | })(errorType, extraFields); |
| 319 | } |
| 320 | |
| 321 | void PRESET_MISSING_FIELD(std::string const& presetName, |
| 322 | std::string const& missingField, cmJSONState* state) |
nothing calls this directly
no test coverage detected
searching dependent graphs…