diff --git a/make_shared_array.html b/make_shared_array.html index 6f34519..1f0f4d3 100644 --- a/make_shared_array.html +++ b/make_shared_array.html @@ -205,17 +205,17 @@ template<typename T, typename A>
template<typename T> shared_ptr<T[]> make_shared_noinit(size_t size); template<typename T, typename A> - shared_ptr<T[]> make_shared_noinit(const A& allocator, size_t size);+ shared_ptr<T[]> allocate_shared_noinit(const A& allocator, size_t size);
-Description: This overload does not perform value +
Description: These overloads do not perform any value initialization of elements.
template<typename T> shared_ptr<T[N]> make_shared_noinit(); template<typename T, typename A> - shared_ptr<T[N]> make_shared_noinit(const A& allocator);+ shared_ptr<T[N]> allocate_shared_noinit(const A& allocator);
-Description: This overload of the utility above is used for a +
Description: These overloads of the utilities above are for a fixed size array.