| 216 | } |
| 217 | } |
| 218 | Executor::RuntimeManager* Executor::RuntimeManager::createRuntimeManager(std::vector<ScheduleConfig>& configs) { |
| 219 | if (configs.empty()) { |
| 220 | return nullptr; |
| 221 | } |
| 222 | return createRuntimeManager(configs[0]); |
| 223 | } |
| 224 | void Executor::RuntimeManager::destroy(RuntimeManager* rtmgr) { |
| 225 | if (nullptr != rtmgr) { |
| 226 | delete rtmgr; |
nothing calls this directly
no test coverage detected