Skip to content
Merged
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
8 changes: 4 additions & 4 deletions source/numerics.tex
Original file line number Diff line number Diff line change
Expand Up @@ -12240,7 +12240,7 @@
if that expression is valid,
with overload resolution performed in a context that includes the declaration
\begin{codeblock}
template<class T> T abs(T) = delete;
template<class U> U abs(U) = delete;
\end{codeblock}
If the function selected by overload resolution
does not return the absolute value of its input,
Expand All @@ -12260,7 +12260,7 @@
the expression \tcode{conj(E)} is valid,
with overload resolution performed in a context that includes the declaration
\begin{codeblock}
template<class T> T conj(const T&) = delete;
template<class U> U conj(const U&) = delete;
\end{codeblock}
If the function selected by overload resolution
does not return the complex conjugate of its input,
Expand All @@ -12282,7 +12282,7 @@
the expression \tcode{real(E)} is valid,
with overload resolution performed in a context that includes the declaration
\begin{codeblock}
template<class T> T real(const T&) = delete;
template<class U> U real(const U&) = delete;
\end{codeblock}
If the function selected by overload resolution
does not return the real part of its input,
Expand All @@ -12304,7 +12304,7 @@
is valid, with overload resolution performed in a context
that includes the declaration
\begin{codeblock}
template<class T> T imag(const T&) = delete;
template<class U> U imag(const U&) = delete;
\end{codeblock}
If the function selected by overload resolution
does not return the imaginary part of its input,
Expand Down
Loading