[#bsl-make_shared-0d] = xref:bsl.adoc[bsl]::make_shared :relfileprefix: ../ :mrdocs: Return a `shared_ptr` object referring to and managing a new `ARRAY_TYPE` object, where `ARRAY_TYPE` is a unbounded array. The default allocator will be used to supply a single contiguous region of memory holding the returned shared pointer's internal representation and the new `ARRAY_TYPE` containing the specified `numElements` number of elements, and each element in the array is constructed from the specified `value`. == Synopsis Declared in `<bslstl_sharedptr.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ARRAY_TYPE> xref:bsl/shared_ptr-0a.adoc[bsl::shared_ptr<ARRAY_TYPE>] make_shared( std::size_t numElements, remove_extent<ARRAY_TYPE>::type const& value) requires is_unbounded_array<ARRAY_TYPE>::value; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#