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

1 · cpprefjp · Oct. 6, 2022, 6:33 a.m.
diff --git a/reference/vector/vector/op_greater.md b/reference/vector/vector/op_greater.md index 40a967a8c..4b547b33b 100644 --- a/reference/vector/vector/op_greater.md +++ b/reference/vector/vector/op_greater.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 + +...