| 94 | */ |
| 95 | template <typename T> |
| 96 | inline typename associated_allocator<T>::type |
| 97 | get_associated_allocator(const T& t) ASIO_NOEXCEPT |
| 98 | { |
| 99 | return associated_allocator<T>::get(t); |
| 100 | } |
| 101 | |
| 102 | /// Helper function to obtain an object's associated allocator. |
| 103 | /** |