[#bsl-allocator_traits-0ae-construct] = xref:bsl.adoc[bsl]::xref:bsl/allocator_traits-0ae.adoc[allocator_traits<std::allocator<ALLOCATOR_TYPE>>]::construct :relfileprefix: ../../ :mrdocs: Construct an object at the specified uninitialized address. == Synopsis Declared in `<bslma_allocatortraits.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- using Base::construct; ---- == Description Construct an object at `p` by forwarding `args` to the constructor, via the underlying `std::allocator_traits` implementation. == Parameters [cols="1,4"] |=== | Name| Description | *a* | allocator used for construction if it provides `construct` | *p* | address at which to construct the object | *args* | constructor arguments forwarded to the object type |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#