Searched defs:NoDefaultAllocator (Results 1 – 2 of 2) sorted by relevance
22 struct NoDefaultAllocator : std::allocator<T> struct24 template<typename U> struct rebind { using other = NoDefaultAllocator<U>; }; argument25 NoDefaultAllocator(int id_) : id(id_) { } in NoDefaultAllocator() function26 template<typename U> NoDefaultAllocator(const NoDefaultAllocator<U>& a) : id(a.id) { } in NoDefaultAllocator() function27 int id;
23 struct NoDefaultAllocator : std::allocator<T> struct25 template<typename U> struct rebind { using other = NoDefaultAllocator<U>; }; argument26 NoDefaultAllocator(int id_) : id(id_) { } in NoDefaultAllocator() argument27 template<typename U> NoDefaultAllocator(const NoDefaultAllocator<U>& a) : id(a.id) { } in NoDefaultAllocator() argument28 int id;