Lines Matching defs:bare_allocator
25 class bare_allocator
30 bare_allocator() TEST_NOEXCEPT {}
33 bare_allocator(bare_allocator<U>) TEST_NOEXCEPT {}
45 friend bool operator==(bare_allocator, bare_allocator) {return true;}
46 friend bool operator!=(bare_allocator x, bare_allocator y) {return !(x == y);}
145 struct cpp03_allocator : bare_allocator<T>
168 struct cpp03_overload_allocator : bare_allocator<T>