Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 4 additions & 12 deletions source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -15583,8 +15583,8 @@
// \ref{func.wrap.ref.deduct}, deduction guides
template<class F>
function_ref(F*) -> function_ref<F>;
template<auto c, class F0>
function_ref(constant_wrapper<c, F0>) -> function_ref<@\seebelow@>;
template<auto c, class F>
function_ref(constant_wrapper<c, F*>) -> function_ref<F>;
template<auto c, class F, class T>
function_ref(constant_wrapper<c, F>, T&&) -> function_ref<@\seebelow@>;
}
Expand Down Expand Up @@ -15879,23 +15879,15 @@
\end{itemdescr}

\begin{itemdecl}
template<auto c, class F0>
function_ref(constant_wrapper<c, F0>) -> function_ref<@\seebelow@>;
template<auto c, class F>
function_ref(constant_wrapper<c, F*>) -> function_ref<F>;
\end{itemdecl}

\begin{itemdescr}
\pnum
Let \tcode{F} be \tcode{remove_pointer_t<F0>}.

\pnum
\constraints
\tcode{is_function_v<F>} is \tcode{true}.

\pnum
\remarks
The deduced type is \tcode{function_ref<F>}.
\end{itemdescr}

\begin{itemdecl}
template<auto c, class F, class T>
function_ref(constant_wrapper<c, F>, T&&) -> function_ref<@\seebelow@>;
Expand Down
Loading