Skip to content

Commit 57c9031

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 2daefb6 commit 57c9031

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
@@ -18021,8 +18021,8 @@
1802118021
constexpr simd<T, (basic_simd<T, Abis>::size() + ...)>
1802218022
simd_cat(const basic_simd<T, Abis>&... xs) noexcept;
1802318023
template<size_t Bytes, class... Abis>
18024-
constexpr simd_mask<@\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
18025-
(basic_simd_mask<Bytes, Abis>::size() + ...)>
18024+
constexpr basic_simd_mask<Bytes, @\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
18025+
(basic_simd_mask<Bytes, Abis>::size() + ...)>>
1802618026
simd_cat(const basic_simd_mask<Bytes, Abis>&... xs) noexcept;
1802718027
\end{itemdecl}
1802818028

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

1804218043
\pnum

0 commit comments

Comments
 (0)