Skip to content

Commit a408f67

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 30bbabe commit a408f67

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

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

1799817999
\pnum

0 commit comments

Comments
 (0)