Skip to content

Commit 668fcd6

Browse files
committed
[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 1d452f4 commit 668fcd6

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
@@ -17978,8 +17978,8 @@
1797817978
constexpr simd<T, (basic_simd<T, Abis>::size() + ...)>
1797917979
simd_cat(const basic_simd<T, Abis>&... xs) noexcept;
1798017980
template<size_t Bytes, class... Abis>
17981-
constexpr simd_mask<@\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
17982-
(basic_simd_mask<Bytes, Abis>::size() + ...)>
17981+
constexpr basic_simd_mask<Bytes, @\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
17982+
(basic_simd_mask<Bytes, Abis>::size() + ...)>>
1798317983
simd_cat(const basic_simd_mask<Bytes, Abis>&... xs) noexcept;
1798417984
\end{itemdecl}
1798517985

@@ -17992,8 +17992,9 @@
1799217992
is enabled.
1799317993
\item
1799417994
For the second overload
17995-
\tcode{simd_mask<\exposid{deduce-abi-t}<\exposid{integer-from}<Bytes>,
17996-
(basic_simd_mask\brk{}<\brk{}Bytes, Abis>::size() + ...)>} is enabled.
17995+
\tcode{basic_simd_mask<Bytes,
17996+
\exposid{deduce-abi-t}<\exposid{integer-from}<Bytes>,
17997+
(ba\-sic_simd_mask<Bytes, Abis>::size() + ...)>>} is enabled.
1799717998
\end{itemize}
1799817999

1799918000
\pnum

0 commit comments

Comments
 (0)