Searched defs:UsesAllocatorTestBaseStorage (Results 1 – 1 of 1) sorted by relevance
157 struct UsesAllocatorTestBaseStorage { struct159 UsesAllocatorTestBaseStorage() = default; argument160 UsesAllocatorTestBaseStorage(Alloc const& a) : allocator(a) {} in UsesAllocatorTestBaseStorage() function165 struct UsesAllocatorTestBaseStorage<Alloc, false> { argument172 UsesAllocatorTestBaseStorage() : dummy(), has_alloc(false) {} in UsesAllocatorTestBaseStorage() argument173 UsesAllocatorTestBaseStorage(Alloc const& a) : alloc(a), has_alloc(true) {} in UsesAllocatorTestBaseStorage() function174 ~UsesAllocatorTestBaseStorage() { in ~UsesAllocatorTestBaseStorage() argument179 Alloc const* get_allocator() const { in get_allocator()