| 1197 | |
| 1198 | template <class RET> |
| 1199 | std::future_status Context<RET>::waitForAt(int num, std::chrono::milliseconds timeMs) const |
| 1200 | { |
| 1201 | return waitForAt(num, nullptr, timeMs); |
| 1202 | } |
| 1203 | |
| 1204 | template <class RET> |
| 1205 | void Context<RET>::wait() const |
nothing calls this directly
no test coverage detected