Skip to content

Commit 44c5220

Browse files
authored
[allocator.uses.construction] Add missing closing parentheses (#4729)
The parentheses were erroneously omitted from 9ffd955 during the application of LWG3527.
1 parent 641afd1 commit 44c5220

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/utilities.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7818,8 +7818,8 @@
78187818
Equivalent to:
78197819
\begin{codeblock}
78207820
return uses_allocator_construction_args<T>(alloc, piecewise_construct,
7821-
forward_as_tuple(get<0>(std::move(pr)),
7822-
forward_as_tuple(get<1>(std::move(pr)));
7821+
forward_as_tuple(get<0>(std::move(pr))),
7822+
forward_as_tuple(get<1>(std::move(pr))));
78237823
\end{codeblock}
78247824
\end{itemdescr}
78257825

0 commit comments

Comments
 (0)