Skip to content

Commit 41afa10

Browse files
mattkretztkoeppe
authored andcommitted
[simd.creation] Use return type from synopsis
The return type in the itemdecl/-descr was obviously wrong (ABI tag as first template argument to the simd_mask alias template and missing closing template bracket). The synopsis had the correct return type.
1 parent 4b1c24c commit 41afa10

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

source/numerics.tex

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18020,8 +18020,8 @@
1802018020
constexpr simd<T, (basic_simd<T, Abis>::size() + ...)>
1802118021
simd_cat(const basic_simd<T, Abis>&... xs) noexcept;
1802218022
template<size_t Bytes, class... Abis>
18023-
constexpr simd_mask<@\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
18024-
(basic_simd_mask<Bytes, Abis>::size() + ...)>
18023+
constexpr basic_simd_mask<Bytes, @\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
18024+
(basic_simd_mask<Bytes, Abis>::size() + ...)>>
1802518025
simd_cat(const basic_simd_mask<Bytes, Abis>&... xs) noexcept;
1802618026
\end{itemdecl}
1802718027

@@ -18034,8 +18034,9 @@
1803418034
is enabled.
1803518035
\item
1803618036
For the second overload
18037-
\tcode{simd_mask<\exposid{deduce-abi-t}<\exposid{integer-from}<Bytes>,
18038-
(basic_simd_mask\brk{}<\brk{}Bytes, Abis>::size() + ...)>} is enabled.
18037+
\tcode{basic_simd_mask<Bytes,
18038+
\exposid{deduce-abi-t}<\exposid{integer-from}<Bytes>,
18039+
(ba\-sic_simd_mask<Bytes, Abis>::size() + ...)>>} is enabled.
1803918040
\end{itemize}
1804018041

1804118042
\pnum

0 commit comments

Comments
 (0)