Skip to content

Commit 75df33d

Browse files
authored
Fix typo in submdspan_extents.
The pack `Extents` must be a pack of `size_t` integers.
1 parent b9d7470 commit 75df33d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/containers.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25500,15 +25500,15 @@
2550025500

2550125501
\indexlibraryglobal{submdspan_extents}%
2550225502
\begin{itemdecl}
25503-
template<class IndexType, class... Extents, class... SliceSpecifiers>
25503+
template<class IndexType, size_t... Extents, class... SliceSpecifiers>
2550425504
constexpr auto submdspan_extents(const extents<IndexType, Extents...>& src,
2550525505
SliceSpecifiers... slices);
2550625506
\end{itemdecl}
2550725507

2550825508
\begin{itemdescr}
2550925509
\pnum
2551025510
\constraints
25511-
\tcode{sizeof...(slices)} equals \tcode{Extents::rank()}.
25511+
\tcode{sizeof...(slices)} equals \tcode{sizeof...(Extents)}.
2551225512

2551325513
\pnum
2551425514
\mandates

0 commit comments

Comments
 (0)