| 385 | } |
| 386 | |
| 387 | bool PresetUIntHelper(unsigned int& out, Json::Value const* value, |
| 388 | cmJSONState* state) |
| 389 | { |
| 390 | static auto const helper = JSONHelperBuilder::UInt(); |
| 391 | return helper(out, value, state); |
| 392 | } |
| 393 | |
| 394 | bool PresetOptionalUIntHelper(cm::optional<unsigned int>& out, |
| 395 | Json::Value const* value, cmJSONState* state) |
nothing calls this directly
no test coverage detected
searching dependent graphs…