operator== -- bitset: P2417R2 constexpr化(#1091)

1 · cpprefjp · Jan. 16, 2023, 9:33 a.m.
diff --git a/reference/bitset/bitset/op_equal.md b/reference/bitset/bitset/op_equal.md index 90f60064f..d8574f78d 100644 --- a/reference/bitset/bitset/op_equal.md +++ b/reference/bitset/bitset/op_equal.md @@ -5,8 +5,9 @@ * function[meta id-type] ```cpp -bool operator==(const bitset<N>& rhs) const; // C++03 -bool operator==(const bitset<N>& rhs) const noexcept; // C++11 +bool operator==(const bitset<N>& rhs) const; // (1) C++03 +bool operator==(const bitset<N>& rhs) const no...