[#bsl-shared_ptr-0a-2constructor-04] = xref:bsl.adoc[bsl]::xref:bsl/shared_ptr-0a.adoc[shared_ptr]::shared_ptr :relfileprefix: ../../ :mrdocs: Create a shared pointer that refers to and manages the same object (if any) as the specified `original` shared pointer, and uses the same deleter as `original` to destroy the shared object. Note that if `original` is empty, then an empty shared pointer is created, which may still point to an un‐managed object if `original` were constructed through an aliasing constructor. == Synopsis Declared in `<bslstl_sharedptr.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- shared_ptr(xref:bsl/shared_ptr-0a.adoc[shared_ptr] const& original) noexcept; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#