Home | History | Annotate | Download | only in ADT

Lines Matching defs:make_unique

916 // Implement make_unique according to N3656.
923 /// auto p = make_unique<int>();
924 /// auto p = make_unique<std::tuple<int, int>>(0, 1);
927 make_unique(Args &&... args) {
938 /// auto p = make_unique<int[]>(2); // value-initializes the array with 0's.
942 make_unique(size_t n) {
949 make_unique(Args &&...) = delete;