[#BloombergLP-bdlma-ConcurrentFixedPool-deleteObject] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlma.adoc[bdlma]::xref:BloombergLP/bdlma/ConcurrentFixedPool.adoc[ConcurrentFixedPool]::deleteObject :relfileprefix: ../../../ :mrdocs: Destroy the specified `object` based on its dynamic type and then use this allocator to deallocate its memory footprint. Do nothing if `object` is 0. The behavior is undefined unless `object`, when cast appropriately to `void *`, was allocated using this 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. == Synopsis Declared in `<bdlma_concurrentfixedpool.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> void deleteObject(TYPE const* object); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#