Forwards the request to get the executor to the associator specialisation for the unwrapped type @c T.
| 206 | /// Forwards the request to get the executor to the associator specialisation |
| 207 | /// for the unwrapped type @c T. |
| 208 | static type get(reference_wrapper<T> t, |
| 209 | const Executor& ex = Executor()) ASIO_NOEXCEPT |
| 210 | { |
| 211 | return associated_executor<T, Executor>::get(t.get(), ex); |
| 212 | } |
| 213 | }; |
| 214 | |
| 215 | #endif // defined(ASIO_HAS_STD_REFERENCE_WRAPPER) |
no test coverage detected