コンストラクタ -- pair: C++23 P1951R1対応

1 · cpprefjp · Aug. 17, 2021, 7:49 a.m.
diff --git a/reference/utility/pair/op_constructor.md b/reference/utility/pair/op_constructor.md index f3d49be7a..f7039ea23 100644 --- a/reference/utility/pair/op_constructor.md +++ b/reference/utility/pair/op_constructor.md @@ -27,6 +27,8 @@ template <class U, class V> EXPLICIT constexpr pair(U&& x, V&& y); // (5) C++17 template <class U, class V> explicit(see below) constexpr pair(U&& x, V&& y); // (5) C++20 +template <class U = T1, class V = T2> +explicit...