Skip to content

Commit 608c152

Browse files
CaseyCartertkoeppe
authored andcommitted
[vector.bool.pspc] Replace constexpr static with static constexpr
As preferred by our style guide.
1 parent 4cac06b commit 608c152

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
@@ -9238,7 +9238,7 @@
92389238
constexpr iterator erase(const_iterator position);
92399239
constexpr iterator erase(const_iterator first, const_iterator last);
92409240
constexpr void swap(vector&);
9241-
constexpr static void swap(reference x, reference y) noexcept;
9241+
static constexpr void swap(reference x, reference y) noexcept;
92429242
constexpr void flip() noexcept; // flips all bits
92439243
constexpr void clear() noexcept;
92449244
};
@@ -9279,7 +9279,7 @@
92799279

92809280
\indexlibrarymember{swap}{vector<bool>}%
92819281
\begin{itemdecl}
9282-
constexpr static void swap(reference x, reference y) noexcept;
9282+
static constexpr void swap(reference x, reference y) noexcept;
92839283
\end{itemdecl}
92849284

92859285
\begin{itemdescr}

0 commit comments

Comments
 (0)