Lines Matching defs:no_default_allocator
51 class no_default_allocator
54 no_default_allocator() = delete;
56 no_default_allocator();
59 explicit no_default_allocator(construct_tag) {}
62 static no_default_allocator create() {
64 return no_default_allocator(tag);
71 no_default_allocator(no_default_allocator<U>) TEST_NOEXCEPT {}
83 friend bool operator==(no_default_allocator, no_default_allocator) {return true;}
84 friend bool operator!=(no_default_allocator x, no_default_allocator y) {return !(x == y);}