| 1394 | using ExecutorType = SimpleExecutor<T>; |
| 1395 | |
| 1396 | void MakeExecutor(int nfutures) { executor_.reset(new ExecutorType(nfutures)); } |
| 1397 | |
| 1398 | void MakeExecutor(int nfutures, std::vector<std::pair<int, bool>> immediate) { |
| 1399 | MakeExecutor(nfutures); |
nothing calls this directly
no test coverage detected