This struct provides a namespace for helper functions used for deleting objects in various pools and allocators.
Declared in <bslma_deleterhelper.h>
struct DeleterHelper;
| Name | Description |
|---|---|
deleteObject | Destroy the specified object based on its dynamic type and then use the specified allocator to deallocate its memory footprint. Do nothing if object is a null pointer. The behavior is undefined unless allocator is non-null, and object, when cast appropriately to void *, was allocated using allocator and has not already been deallocated. Note that dynamic_cast<void *>(object) is applied if TYPE is polymorphic, and static_cast<void *>(object) is applied otherwise. |
deleteObjectRaw | Destroy the specified object and then use the specified allocator to deallocate its memory footprint. Do nothing if object is a null pointer. The behavior is undefined unless allocator is non-null, object is not a secondary base class pointer (i.e., the address is (numerically) the same as when it was originally dispensed by allocator), and object was allocated using allocator and has not already been deallocated. |