operator== -- vectorの非メンバ関数をconstexpr対応 #688

1 · cpprefjp · Oct. 6, 2022, 6:33 a.m.
diff --git a/reference/vector/vector/op_equal.md b/reference/vector/vector/op_equal.md index 758f84b44..a05215bf2 100644 --- a/reference/vector/vector/op_equal.md +++ b/reference/vector/vector/op_equal.md @@ -6,7 +6,12 @@ ```cpp namespace std { template <class T, class Allocator> - bool operator==(const vector<T, Allocator>& x, const vector<T, Allocator>& y); + bool operator==(const vector<T, Allocator>& x, + const vector<T, Allocator>& y); // (1) C++03 + + tem...