| 358 | } |
| 359 | |
| 360 | bool PresetBoolHelper(bool& out, Json::Value const* value, cmJSONState* state) |
| 361 | { |
| 362 | static auto const helper = JSONHelperBuilder::Bool(); |
| 363 | return helper(out, value, state); |
| 364 | } |
| 365 | |
| 366 | bool PresetOptionalBoolHelper(cm::optional<bool>& out, |
| 367 | Json::Value const* value, cmJSONState* state) |
nothing calls this directly
no test coverage detected
searching dependent graphs…