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

Method DeferCancelCall

Source/cmMakefile.cxx:2531–2542  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2529}
2530
2531bool cmMakefile::DeferCancelCall(std::string const& id)
2532{
2533 if (!this->Defer) {
2534 return false;
2535 }
2536 for (DeferCommand& dc : this->Defer->Commands) {
2537 if (dc.Id == id) {
2538 dc.Id.clear();
2539 }
2540 }
2541 return true;
2542}
2543
2544cm::optional<std::string> cmMakefile::DeferGetCallIds() const
2545{

Callers 1

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected