| 2518 | } |
| 2519 | |
| 2520 | bool cmMakefile::DeferCall(std::string id, std::string file, |
| 2521 | cmListFileFunction lff) |
| 2522 | { |
| 2523 | if (!this->Defer) { |
| 2524 | return false; |
| 2525 | } |
| 2526 | this->Defer->Commands.emplace_back( |
| 2527 | DeferCommand{ std::move(id), std::move(file), std::move(lff) }); |
| 2528 | return true; |
| 2529 | } |
| 2530 | |
| 2531 | bool cmMakefile::DeferCancelCall(std::string const& id) |
| 2532 | { |
no test coverage detected