[#make_secure_unique] = make_secure_unique :mrdocs: Constructs an object of type T in secure memory and returns owning pointer. == Synopsis Declared in `<support/allocators/secure.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename T, typename... Args> xref:secure_unique_ptr.adoc[secure_unique_ptr<T>] make_secure_unique(Args&&... as); ---- == Return Value A secure_unique_ptr owning the newly constructed object. == Parameters [cols="1,4"] |=== | Name| Description | *as* | Arguments forwarded to the constructor of T. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#