Skip to content

Commit

Permalink
[vector.overview,vector.bool.pspc] Moveat() const to after at() (#…
Browse files Browse the repository at this point in the history
…7484)

This is consistent with the ordering for operator[].
  • Loading branch information
lprv authored Dec 12, 2024
1 parent ddff94a commit 10668dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8740,8 +8740,8 @@
// element access
constexpr reference operator[](size_type n);
constexpr const_reference operator[](size_type n) const;
constexpr const_reference at(size_type n) const;
constexpr reference at(size_type n);
constexpr const_reference at(size_type n) const;
constexpr reference front();
constexpr const_reference front() const;
constexpr reference back();
Expand Down Expand Up @@ -9322,8 +9322,8 @@
// element access
constexpr reference operator[](size_type n);
constexpr const_reference operator[](size_type n) const;
constexpr const_reference at(size_type n) const;
constexpr reference at(size_type n);
constexpr const_reference at(size_type n) const;
constexpr reference front();
constexpr const_reference front() const;
constexpr reference back();
Expand Down

0 comments on commit 10668dc

Please sign in to comment.