Skip to content

Commit 3e8d4e8

Browse files
committed
[expected.un.ctor] Fix missing parameter names
This fixes an issue introduced with P0323R12 std::expected.
1 parent 54358d1 commit 3e8d4e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/utilities.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6595,7 +6595,7 @@
65956595
\indexlibraryctor{unexpected}%
65966596
\begin{itemdecl}
65976597
template<class... Args>
6598-
constexpr explicit unexpected(in_place_t, Args&&...);
6598+
constexpr explicit unexpected(in_place_t, Args&&... args);
65996599
\end{itemdecl}
66006600

66016601
\begin{itemdescr}
@@ -6616,7 +6616,7 @@
66166616
\indexlibraryctor{unexpected}%
66176617
\begin{itemdecl}
66186618
template<class U, class... Args>
6619-
constexpr explicit unexpected(in_place_t, initializer_list<U>, Args&&...);
6619+
constexpr explicit unexpected(in_place_t, initializer_list<U> il, Args&&... args);
66206620
\end{itemdecl}
66216621

66226622
\begin{itemdescr}
@@ -6627,7 +6627,7 @@
66276627
\pnum
66286628
\effects
66296629
Direct-non-list-initializes
6630-
\exposid{val} with \tcode{std::forward<Args>(args)...}.
6630+
\exposid{val} with \tcode{il, std::forward<Args>(args)...}.
66316631

66326632
\pnum
66336633
\throws

0 commit comments

Comments
 (0)