| 1375 | return *this; |
| 1376 | } |
| 1377 | void swap(basic_future& that) BOOST_NOEXCEPT |
| 1378 | { |
| 1379 | future_.swap(that.future_); |
| 1380 | } |
| 1381 | // functions to check state, and wait for ready |
| 1382 | state get_state(boost::unique_lock<boost::mutex>& lk) const |
| 1383 | { |
no outgoing calls
no test coverage detected