Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -21275,7 +21275,7 @@
// \ref{mdspan.sub}, \tcode{submdspan} creation
template<class OffsetType, class LengthType, class StrideType>
struct extent_slice;
template<class FirstType, class LastType, class StrideType = std::constant_wrapper<1zu>>
template<class FirstType, class LastType, class StrideType = constant_wrapper<1zu>>
struct range_slice;

template<class LayoutMapping>
Expand Down Expand Up @@ -25732,7 +25732,7 @@
[[no_unique_address]] stride_type stride{};
};

template<class FirstType, class LastType, class StrideType = std::constant_wrapper<1zu>>
template<class FirstType, class LastType, class StrideType = constant_wrapper<1zu>>
struct range_slice {
[[no_unique_address]] FirstType first{};
[[no_unique_address]] LastType last{};
Expand Down
Loading