From b861c38bdc30ee1022651c7a932925fe9db3ccf7 Mon Sep 17 00:00:00 2001 From: Abhinav Agarwal Date: Sun, 26 Apr 2026 16:10:39 -0700 Subject: [PATCH] [mdspan.sub.map.sliceable] Fix M::extent_type to M::extents_type Layout mapping types expose extents_type, not extent_type; the latter is a member of extent_slice. As written, IT and M_rank in the Let clause name an undefined member. --- source/containers.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/containers.tex b/source/containers.tex index 43f506d21e..38adf12f61 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -26074,11 +26074,11 @@ \item \tcode{M} denote a layout mapping class; \item - \tcode{IT} denote \tcode{M::extent_type::index_type}; + \tcode{IT} denote \tcode{M::extents_type::index_type}; \item \tcode{m} denote a value of type (possibly const) \tcode{M}; \item - \tcode{M_rank} be equal to \tcode{M::extent_type::rank()}; + \tcode{M_rank} be equal to \tcode{M::extents_type::rank()}; \item \tcode{valid_slices} denote a pack of (possibly const) objects for which \tcode{sizeof...(valid_slices) == M_rank} is \tcode{true} and,