Skip to content

Commit 9c5bece

Browse files
committed
[simd.expos{,defn}] Fixed template parameter "class T" => "size_t Bytes".
Misapplication of P3932R0 in LWG Motion 5. Addresses editorial review committee feedback.
1 parent 97073b0 commit 9c5bece

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

source/numerics.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16564,7 +16564,7 @@
1656416564

1656516565
template<class T, class Abi>
1656616566
constexpr @\exposidnc{simd-size-type} \exposidnc{simd-size-v} = \seebelownc@; // \expos
16567-
template<class T, class Abi>
16567+
template<size_t Bytes, class Abi>
1656816568
constexpr @\exposidnc{simd-size-type} \exposidnc{mask-size-v} = \seebelownc@; // \expos
1656916569
template<class T> constexpr size_t @\exposidnc{mask-element-size} = \seebelownc@; // \expos
1657016570

@@ -16652,15 +16652,15 @@
1665216652
\end{itemdescr}
1665316653

1665416654
\begin{itemdecl}
16655-
template<class T, class Abi>
16655+
template<size_t Bytes, class Abi>
1665616656
constexpr @\exposid{simd-size-type} \exposid{mask-size-v}@ = @\seebelow@;
1665716657
\end{itemdecl}
1665816658

1665916659
\begin{itemdescr}
1666016660
\pnum
16661-
\tcode{\exposid{mask-size-v}<T, Abi>} denotes
16661+
\tcode{\exposid{mask-size-v}<Bytes, Abi>} denotes
1666216662
the width of \tcode{basic_mask<Bytes, Abi>}
16663-
if the specialization \tcode{basic_mask<Bytes, Abi>} is enabled, or
16663+
if the specialization \tcode{ba\-sic_mask<Bytes, Abi>} is enabled, or
1666416664
\tcode{0} otherwise.
1666516665
\end{itemdescr}
1666616666

0 commit comments

Comments
 (0)