| 1443 | } |
| 1444 | |
| 1445 | void wait() const |
| 1446 | { |
| 1447 | if(!future_) |
| 1448 | { |
| 1449 | boost::throw_exception(future_uninitialized()); |
| 1450 | } |
| 1451 | future_->wait(false); |
| 1452 | } |
| 1453 | |
| 1454 | typedef detail::shared_state_base::notify_when_ready_handle notify_when_ready_handle; |
| 1455 |
no test coverage detected