From 59b877334be838338599f1faf067686365e5e643 Mon Sep 17 00:00:00 2001 From: suomesta Date: Mon, 20 Mar 2023 22:54:31 +0900 Subject: [PATCH] fix that notes on correct place --- reference/bitset/bitset/op_equal.md | 4 ++++ reference/bitset/bitset/op_not_equal.md | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/bitset/bitset/op_equal.md b/reference/bitset/bitset/op_equal.md index d8574f78d1..675ed0c7b4 100644 --- a/reference/bitset/bitset/op_equal.md +++ b/reference/bitset/bitset/op_equal.md @@ -22,6 +22,10 @@ constexpr bool operator==(const bitset& rhs) const noexcept; // (1) C++23 投げない。 +## 備考 +- この演算子により、`operator!=`が使用可能になる (C++20) + + ## 例 ```cpp example #include diff --git a/reference/bitset/bitset/op_not_equal.md b/reference/bitset/bitset/op_not_equal.md index c2b8e152fc..df548f1c57 100644 --- a/reference/bitset/bitset/op_not_equal.md +++ b/reference/bitset/bitset/op_not_equal.md @@ -23,10 +23,6 @@ constexpr bool operator!=(const bitset& rhs) const noexcept; // (1) C++23 投げない。 -## 備考 -- この演算子により、`operator!=`が使用可能になる (C++20) - - ## 例 ```cpp example #include