Skip to content

Commit

Permalink
[mdspan.layout.left.overview] Reorder "explicit" and "constexpr"
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tkoeppe committed Sep 4, 2022
1 parent 83ae428 commit 06dcf05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/containers.tex
Expand Up @@ -19043,8 +19043,8 @@
constexpr explicit(@\seebelow@)
mapping(const layout_right::mapping<OtherExtents>&) noexcept;
template<class OtherExtents>
explicit(extents_type::rank() > 0)
constexpr mapping(const layout_stride::mapping<OtherExtents>&);
constexpr explicit(extents_type::rank() > 0)
mapping(const layout_stride::mapping<OtherExtents>&);

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

Expand Down

0 comments on commit 06dcf05

Please sign in to comment.