MCPcopy Create free account
hub / github.com/Kitware/CMake / InvertCondition

Function InvertCondition

Source/cmCMakePresetsGraphReadJSON.cxx:63–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61};
62
63std::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
71auto const ConditionStringHelper = JSONHelperBuilder::String();
72

Callers 1

ConditionHelperFunction · 0.85

Calls 1

moveFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…