Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[linalg.helpers] Rename template parameter for poison pills #7501

Merged
merged 1 commit into from
Dec 17, 2024
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