From 5dacf4510079028b39181dfb2b68b45a15aaa7b4 Mon Sep 17 00:00:00 2001 From: Matthias Kretz Date: Wed, 24 Apr 2024 10:53:01 +0200 Subject: [PATCH] simd_mask template argument default fixes ChangeLog: * P1928/changelog.tex: * P1928/wording.tex: --- P1928/changelog.tex | 2 ++ P1928/wording.tex | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/P1928/changelog.tex b/P1928/changelog.tex index ba15a6f..2f55683 100644 --- a/P1928/changelog.tex +++ b/P1928/changelog.tex @@ -134,6 +134,8 @@ \section{Changelog} \item Consistently use \code{size} as a callable in the wording. \item Add missing \code{type_identity_t} for \code{reduce} (\ref{sec:simd.syn}, \ref{sec:simd.reductions}). \item Spell out “iff” (\ref{wording.deducet}). +\item Fixed template argument to \nativeabi\ in the default template argument of \code{basic_simd_mask} (\ref{sec:simd.syn}). +\item Fixed default template argument to \code{simd_mask} to be consistent with \code{simd} (\ref{sec:simd.syn}). \todo Add \code{} to the list of headers in 16.4.2.3 \end{revision} diff --git a/P1928/wording.tex b/P1928/wording.tex index c7927ad..576a037 100644 --- a/P1928/wording.tex +++ b/P1928/wording.tex @@ -118,8 +118,8 @@ using simd = basic_simd>; // \ref{simd.mask.class}, Class template \tcode{basic_simd_mask} - template> class basic_simd_mask; - template::size()> + template>> class basic_simd_mask; + template::size()> using simd_mask = basic_simd_mask>; // \ref{simd.creation}, \tcode{basic_simd} and \tcode{basic_simd_mask} creation