Skip to content

Commit bb6df99

Browse files
committed
[memory.syn] Fixed comment alignmentment
1 parent aa8c1f2 commit bb6df99

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

source/memory.tex

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -493,25 +493,26 @@
493493
constexpr shared_ptr<T> allocate_shared(const A& a, Args&&... args); // \tcode{T} is not array
494494

495495
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[]}
497497
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[]}
499499

500500
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]}
502502
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]}
504504

505505
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[]}
507507
template<class T, class A>
508508
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[]}
510510

511511
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]}
513513
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);
515516

516517
template<class T>
517518
constexpr shared_ptr<T> make_shared_for_overwrite(); // \tcode{T} is not \tcode{U[]}

0 commit comments

Comments
 (0)