File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 6595
6595
\indexlibraryctor{unexpected}%
6596
6596
\begin{itemdecl}
6597
6597
template<class... Args>
6598
- constexpr explicit unexpected(in_place_t, Args&&...);
6598
+ constexpr explicit unexpected(in_place_t, Args&&... args );
6599
6599
\end{itemdecl}
6600
6600
6601
6601
\begin{itemdescr}
6616
6616
\indexlibraryctor{unexpected}%
6617
6617
\begin{itemdecl}
6618
6618
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 );
6620
6620
\end{itemdecl}
6621
6621
6622
6622
\begin{itemdescr}
6627
6627
\pnum
6628
6628
\effects
6629
6629
Direct-non-list-initializes
6630
- \exposid{val} with \tcode{std::forward<Args>(args)...}.
6630
+ \exposid{val} with \tcode{il, std::forward<Args>(args)...}.
6631
6631
6632
6632
\pnum
6633
6633
\throws
You can’t perform that action at this time.
0 commit comments