Searched defs:unique_ptr (Results 1 – 2 of 2) sorted by relevance
4 struct unique_ptr { struct5 unique_ptr() {} in unique_ptr() argument
4 class unique_ptr { class10 unique_ptr() : ptr(0) { } in unique_ptr() function in unique_ptr11 unique_ptr(unique_ptr &&other) : ptr(other.ptr) { other.ptr = 0; } in unique_ptr() function in unique_ptr12 explicit unique_ptr(T *ptr) : ptr(ptr) { } in unique_ptr() function in unique_ptr