| 234 | */ |
| 235 | template <typename U> |
| 236 | allocator_binder(const allocator_type& s, U&& u) |
| 237 | : allocator_(s), |
| 238 | target_(static_cast<U&&>(u)) |
| 239 | { |
| 240 | } |
| 241 | |
| 242 | /// Copy constructor. |
| 243 | allocator_binder(const allocator_binder& other) |
nothing calls this directly
no test coverage detected