| 52 | fmt::bool_constant<PropagateOnMove>; |
| 53 | |
| 54 | explicit allocator_ref(Allocator* alloc = nullptr) : alloc_(alloc) {} |
| 55 | |
| 56 | allocator_ref(const allocator_ref& other) : alloc_(other.alloc_) {} |
| 57 | allocator_ref(allocator_ref&& other) { move(other); } |
nothing calls this directly
no outgoing calls
no test coverage detected