| 42 | Allocator* alloc_; |
| 43 | |
| 44 | void move(allocator_ref& other) { |
| 45 | alloc_ = other.alloc_; |
| 46 | other.alloc_ = nullptr; |
| 47 | } |
| 48 | |
| 49 | public: |
| 50 | using value_type = typename Allocator::value_type; |
nothing calls this directly
no outgoing calls
no test coverage detected