Lines Matching defs:u_ptr
227 class u_ptr {230 u_ptr(const u_ptr&) = delete;231 u_ptr &operator=(const u_ptr&) = delete;232 u_ptr(u_ptr &&other) : ptr(other.ptr) { other.ptr = 0; }233 u_ptr(T *ptr) : ptr(ptr) { }234 ~u_ptr() { delete ptr; }237 u_ptr<bool> Wrap(int64_t x) {