| 372 | } |
| 373 | |
| 374 | bool PresetIntHelper(int& out, Json::Value const* value, cmJSONState* state) |
| 375 | { |
| 376 | static auto const helper = JSONHelperBuilder::Int(); |
| 377 | return helper(out, value, state); |
| 378 | } |
| 379 | |
| 380 | bool PresetOptionalIntHelper(cm::optional<int>& out, Json::Value const* value, |
| 381 | cmJSONState* state) |
nothing calls this directly
no test coverage detected
searching dependent graphs…