| 61 | }; |
| 62 | |
| 63 | std::unique_ptr<cmCMakePresetsGraphInternal::NotCondition> InvertCondition( |
| 64 | std::unique_ptr<cmCMakePresetsGraph::Condition> condition) |
| 65 | { |
| 66 | auto retval = cm::make_unique<cmCMakePresetsGraphInternal::NotCondition>(); |
| 67 | retval->SubCondition = std::move(condition); |
| 68 | return retval; |
| 69 | } |
| 70 | |
| 71 | auto const ConditionStringHelper = JSONHelperBuilder::String(); |
| 72 |
no test coverage detected
searching dependent graphs…