| 36 | } |
| 37 | |
| 38 | void Executor::unregister_runner(Runner* r) { |
| 39 | auto it = fl::find(mRunners.begin(), mRunners.end(), r); |
| 40 | if (it != mRunners.end()) { |
| 41 | mRunners.erase(it); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | void Executor::update_all() { |
| 46 | // Update all registered runners |
no test coverage detected