Skip to content

Commit

Permalink
[allocator.uses.construction] Apply change suggested in #3748 to LWG3321
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawn Perchik committed Feb 21, 2020
1 parent efc78a8 commit c962950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -7616,8 +7616,8 @@
\effects
Equivalent to:
\begin{codeblock}
return apply([&](auto&&...xs) {
return construct_at(p, std::forward<decltype(xs)>(xs)...);
return apply([&]<class... U>(U&&...xs) {
return construct_at(p, std::forward<U>(xs)...);
}, uses_allocator_construction_args<T>(alloc, std::forward<Args>(args)...));
\end{codeblock}
\end{itemdescr}
Expand Down

0 comments on commit c962950

Please sign in to comment.