| 429 | } |
| 430 | |
| 431 | void cmState::AddFlowControlCommand(std::string const& name, Command command) |
| 432 | { |
| 433 | this->FlowControlCommands.insert(name); |
| 434 | this->AddBuiltinCommand(name, std::move(command)); |
| 435 | } |
| 436 | |
| 437 | void cmState::AddFlowControlCommand(std::string const& name, |
| 438 | BuiltinCommand command) |
no test coverage detected