| 2529 | } |
| 2530 | |
| 2531 | bool 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 | |
| 2544 | cm::optional<std::string> cmMakefile::DeferGetCallIds() const |
| 2545 | { |
no test coverage detected