Create a deallocator guard that manages the specified memory block.
Declared in <bslma_deallocatorguard.h>
DeallocatorGuard(
void* memory,
ALLOCATOR* allocator);
Create a deallocator guard that unconditionally manages the specified memory block, and that uses the specified allocator to deallocate memory upon destruction of this guard. The behavior is undefined unless memory and allocator are non-zero, and allocator supplied memory. Note that allocator must remain valid throughout the lifetime of this guard.
| Name | Description |
|---|---|
| memory | The address of the memory block to manage. |
| allocator | The allocator used to deallocate the managed memory. |