[#BloombergLP-bslma-Allocator-deleteObjectRaw-06f] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslma.adoc[bslma]::xref:BloombergLP/bslma/Allocator.adoc[Allocator]::deleteObjectRaw :relfileprefix: ../../../ :mrdocs: `deleteObjectRaw` overloads == Synopses Declared in `<bslma_allocator.h>` This function has no effect. Note that it exists to support calling `deleteObjectRaw` will a null pointer literal, that would otherwise not deduce to a pointer type for the method above. As calls to `deleteObjectRaw` with (typed) null pointer values have well‐defined behavior, it should also support calls with a null pointer literal. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bslma/Allocator/deleteObjectRaw-068.adoc[deleteObjectRaw](xref:bsl/nullptr_t-08.adoc[bsl::nullptr_t]); ---- [.small]#xref:BloombergLP/bslma/Allocator/deleteObjectRaw-068.adoc[_» more..._]# Destroy the specified `object` and then use this allocator to deallocate its memory footprint. Do nothing if `object` is a null pointer. The behavior is undefined unless `object` was allocated using this allocator, is *not* a secondary base class pointer ‐‐ i.e., the address is (numerically) the same as when it was originally dispensed by this allocator, and has not already been deallocated. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> void xref:BloombergLP/bslma/Allocator/deleteObjectRaw-07.adoc[deleteObjectRaw](TYPE const* object); ---- [.small]#xref:BloombergLP/bslma/Allocator/deleteObjectRaw-07.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#