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

1 · cpprefjp · Oct. 6, 2022, 6:33 a.m.
diff --git a/reference/vector/vector/op_less.md b/reference/vector/vector/op_less.md index 617fe23d1..fd305ed4a 100644 --- a/reference/vector/vector/op_less.md +++ b/reference/vector/vector/op_less.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 + + template <...