| 23 | using temp_allocator_type = TempAlloc; |
| 24 | |
| 25 | allocator_set(const Alloc& alloc=Alloc(), |
| 26 | const TempAlloc& temp_alloc=TempAlloc()) |
| 27 | : result_alloc_(alloc), temp_alloc_(temp_alloc) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | allocator_set(const allocator_set&) = default; |
| 32 | allocator_set(allocator_set&&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected