Home | History | Annotate | Download | only in ADT

Lines Matching defs:make_unique

937 // Implement make_unique according to N3656.
944 /// auto p = make_unique<int>();
945 /// auto p = make_unique<std::tuple<int, int>>(0, 1);
948 make_unique(Args &&... args) {
959 /// auto p = make_unique<int[]>(2); // value-initializes the array with 0's.
963 make_unique(size_t n) {
970 make_unique(Args &&...) = delete;