From b0df75ad1c865e0fcd2c3ab2ce7caea172421a6e Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Fri, 10 May 2019 08:35:35 -0400 Subject: [PATCH] Rename identifiers in alloc_construct documentation --- doc/alloc_construct.qbk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/alloc_construct.qbk b/doc/alloc_construct.qbk index 0874712..13bc0b1 100644 --- a/doc/alloc_construct.qbk +++ b/doc/alloc_construct.qbk @@ -58,8 +58,8 @@ void alloc_destroy(A& a, T* p); template void alloc_destroy_n(A& a, T* p, std::size_t n); -template -void alloc_construct(A& a, T* p, U&&... u); +template +void alloc_construct(A& a, T* p, Args&&... args); template void alloc_construct_n(A& a, T* p, std::size_t n); @@ -84,12 +84,12 @@ std::size_t n);`] [[Effects] [Destroys each `i`-th element in reverse order by calling `std::allocator_traits::destroy(a, &p[i])`.]]]]] -[[`template void alloc_construct(A& a, T* p, -U&&... u);`] +[[`template void alloc_construct(A& a, T* p, +Args&&... args);`] [[variablelist [[Requires][`A` is an /Allocator/]] [[Effects] -[`std::allocator_traits::construct(a, p, std::forward(u)...)`.]]]]] +[`std::allocator_traits::construct(a, p, std::forward(args)...)`.]]]]] [[`template void alloc_construct_n(A& a, T* p, std::size_t n);`] [[variablelist