Home
last modified time | relevance | path

Searched refs:no_default_allocator (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libcxx/test/support/
H A Dmin_allocator.h49 class no_default_allocator
52 no_default_allocator() = delete;
54 no_default_allocator();
57 explicit no_default_allocator(construct_tag) {} in no_default_allocator() function
60 static no_default_allocator create() { in create()
62 return no_default_allocator(tag); in create()
69 no_default_allocator(no_default_allocator<U>) TEST_NOEXCEPT {} in no_default_allocator() function
81 friend bool operator==(no_default_allocator, no_default_allocator) {return true;}
82 friend bool operator!=(no_default_allocator x, no_default_allocator y) {return !(x == y);}
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/list/list.ops/
H A Dremove.pass.cpp78 typedef no_default_allocator<int> Alloc; in main()