Home | History | Annotate | Download | only in ADT

Lines Matching defs:make_unique

928 // Implement make_unique according to N3656.
935 /// auto p = make_unique<int>();
936 /// auto p = make_unique<std::tuple<int, int>>(0, 1);
939 make_unique(Args &&... args) {
950 /// auto p = make_unique<int[]>(2); // value-initializes the array with 0's.
954 make_unique(size_t n) {
961 make_unique(Args &&...) = delete;