#include "allocator_testing.hpp"
◆ allocator() [1/3]
template<class T , class A = std::allocator<T>>
◆ allocator() [2/3]
template<class T , class A = std::allocator<T>>
◆ allocator() [3/3]
template<class T , class A = std::allocator<T>>
template<class U >
◆ allocate()
template<class T , class A = std::allocator<T>>
79 {
80 config &
c = get_config();
81 size_t count = ++
c.count;
82 if(count >=
c.fail_from || count ==
c.fail_at)
83#ifdef __cpp_exceptions
84 throw std::bad_alloc();
85#else
86 abort();
87#endif
88 return A::allocate(n, hint);
89 }
constexpr Combined c
Definition test_optional.cpp:1460
◆ elements
T std::allocator< T >::elements |
|
inherited |
The documentation for this struct was generated from the following file: