Destroy and deallocate object using its static type.
Declared in <bdlma_concurrentfixedpool.h>
template<class TYPE>
void
deleteObjectRaw(TYPE const* object);
Destroy the specified object based on its static type and then use this allocator to deallocate its memory footprint. Do nothing if object is 0. The behavior is undefined if object is a base-class pointer to a derived type, was not allocated using this allocator, or has already been deallocated.
| Name | Description |
|---|---|
| object | object to destroy and deallocate; may be null |