| 248 | */ |
| 249 | template <typename U> |
| 250 | allocator_binder(const allocator_type& s, |
| 251 | ASIO_MOVE_ARG(U) u) |
| 252 | : allocator_(s), |
| 253 | target_(ASIO_MOVE_CAST(U)(u)) |
| 254 | { |
| 255 | } |
| 256 | |
| 257 | /// Copy constructor. |
| 258 | allocator_binder(const allocator_binder& other) |
nothing calls this directly
no test coverage detected