| 425 | } |
| 426 | |
| 427 | bool PresetConditionHelper( |
| 428 | std::shared_ptr<cmCMakePresetsGraph::Condition>& out, |
| 429 | Json::Value const* value, cmJSONState* state) |
| 430 | { |
| 431 | std::unique_ptr<cmCMakePresetsGraph::Condition> ptr; |
| 432 | auto result = ConditionHelper(ptr, value, state); |
| 433 | out = std::move(ptr); |
| 434 | return result; |
| 435 | } |
| 436 | |
| 437 | bool PresetVectorOneOrMoreStringHelper(std::vector<std::string>& out, |
| 438 | Json::Value const* value, |
nothing calls this directly
no test coverage detected
searching dependent graphs…