コンストラクタ -- stack: C++23 P1245R4対応

1 · cpprefjp · Aug. 17, 2021, 10:09 a.m.
diff --git a/reference/stack/stack/op_constructor.md b/reference/stack/stack/op_constructor.md index 1f799f034..50e71fb16 100644 --- a/reference/stack/stack/op_constructor.md +++ b/reference/stack/stack/op_constructor.md @@ -5,50 +5,63 @@ * function[meta id-type] ```cpp -explicit stack(const Container& cont = Container()); // (1) C++03まで -explicit stack(Container&& cont = Container()); // (2) C++11 -explicit stack(const Container& cont); // (3) C++11 +// C++03まで +explic...