Skip to content

Commit 943a96d

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 864542f commit 943a96d

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
@@ -17972,8 +17972,8 @@
1797217972
constexpr simd<T, (basic_simd<T, Abis>::size() + ...)>
1797317973
simd_cat(const basic_simd<T, Abis>&... xs) noexcept;
1797417974
template<size_t Bytes, class... Abis>
17975-
constexpr simd_mask<@\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
17976-
(basic_simd_mask<Bytes, Abis>::size() + ...)>
17975+
constexpr basic_simd_mask<Bytes, @\exposid{deduce-abi-t}@<@\exposid{integer-from}@<Bytes>,
17976+
(basic_simd_mask<Bytes, Abis>::size() + ...)>>
1797717977
simd_cat(const basic_simd_mask<Bytes, Abis>&... xs) noexcept;
1797817978
\end{itemdecl}
1797917979

@@ -17986,8 +17986,9 @@
1798617986
is enabled.
1798717987
\item
1798817988
For the second overload
17989-
\tcode{simd_mask<\exposid{deduce-abi-t}<\exposid{integer-from}<Bytes>,
17990-
(basic_simd_mask\brk{}<\brk{}Bytes, Abis>::size() + ...)>} is enabled.
17989+
\tcode{basic_simd_mask<Bytes,
17990+
\exposid{deduce-abi-t}<\exposid{integer-from}<Bytes>,
17991+
(ba\-sic_simd_mask<Bytes, Abis>::size() + ...)>>} is enabled.
1799117992
\end{itemize}
1799217993

1799317994
\pnum

0 commit comments

Comments
 (0)