|
493 | 493 | constexpr shared_ptr<T> allocate_shared(const A& a, Args&&... args); // \tcode{T} is not array |
494 | 494 |
|
495 | 495 | template<class T> |
496 | | - constexpr shared_ptr<T> make_shared(size_t N); // \tcode{T} is \tcode{U[]} |
| 496 | + constexpr shared_ptr<T> make_shared(size_t N); // \tcode{T} is \tcode{U[]} |
497 | 497 | template<class T, class A> |
498 | | - constexpr shared_ptr<T> allocate_shared(const A& a, size_t N); // \tcode{T} is \tcode{U[]} |
| 498 | + constexpr shared_ptr<T> allocate_shared(const A& a, size_t N); // \tcode{T} is \tcode{U[]} |
499 | 499 |
|
500 | 500 | template<class T> |
501 | | - constexpr shared_ptr<T> make_shared(); // \tcode{T} is \tcode{U[N]} |
| 501 | + constexpr shared_ptr<T> make_shared(); // \tcode{T} is \tcode{U[N]} |
502 | 502 | template<class T, class A> |
503 | | - constexpr shared_ptr<T> allocate_shared(const A& a); // \tcode{T} is \tcode{U[N]} |
| 503 | + constexpr shared_ptr<T> allocate_shared(const A& a); // \tcode{T} is \tcode{U[N]} |
504 | 504 |
|
505 | 505 | template<class T> |
506 | | - constexpr shared_ptr<T> make_shared(size_t N, const remove_extent_t<T>& u); // \tcode{T} is \tcode{U[]} |
| 506 | + constexpr shared_ptr<T> make_shared(size_t N, const remove_extent_t<T>& u); // \tcode{T} is \tcode{U[]} |
507 | 507 | template<class T, class A> |
508 | 508 | constexpr shared_ptr<T> allocate_shared(const A& a, size_t N, |
509 | | - const remove_extent_t<T>& u); // \tcode{T} is \tcode{U[]} |
| 509 | + const remove_extent_t<T>& u); // \tcode{T} is \tcode{U[]} |
510 | 510 |
|
511 | 511 | template<class T> |
512 | | - constexpr shared_ptr<T> make_shared(const remove_extent_t<T>& u); // \tcode{T} is \tcode{U[N]} |
| 512 | + constexpr shared_ptr<T> make_shared(const remove_extent_t<T>& u); // \tcode{T} is \tcode{U[N]} |
513 | 513 | template<class T, class A> |
514 | | - constexpr shared_ptr<T> allocate_shared(const A& a, const remove_extent_t<T>& u); // \tcode{T} is \tcode{U[N]} |
| 514 | + constexpr shared_ptr<T> allocate_shared(const A& a, // \tcode{T} is \tcode{U[N]} |
| 515 | + const remove_extent_t<T>& u); |
515 | 516 |
|
516 | 517 | template<class T> |
517 | 518 | constexpr shared_ptr<T> make_shared_for_overwrite(); // \tcode{T} is not \tcode{U[]} |
|
0 commit comments