Skip to content

Commit f4370cb

Browse files
committed
[mdspan.layout.left.overview] Rerder "explicit" and "constexpr"
The standard ordering is "constexpr explicit", not the other way round. The paper P0009R18 contains a non-standard style, and other instances had already been fixed. Only this one seems to have been missed previously.
1 parent 83ae428 commit f4370cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/containers.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -19043,8 +19043,8 @@
1904319043
constexpr explicit(@\seebelow@)
1904419044
mapping(const layout_right::mapping<OtherExtents>&) noexcept;
1904519045
template<class OtherExtents>
19046-
explicit(extents_type::rank() > 0)
19047-
constexpr mapping(const layout_stride::mapping<OtherExtents>&);
19046+
constexpr explicit(extents_type::rank() > 0)
19047+
mapping(const layout_stride::mapping<OtherExtents>&);
1904819048

1904919049
constexpr mapping& operator=(const mapping&) noexcept = default;
1905019050

0 commit comments

Comments
 (0)