FuzzerDefs.h | 163 class fuzzer_allocator: public std::allocator<T> { class in namespace:fuzzer 165 fuzzer_allocator() = default; 168 fuzzer_allocator(const fuzzer_allocator<U>&) {} function in class:fuzzer::fuzzer_allocator 171 struct rebind { typedef fuzzer_allocator<Other> other; }; 175 using Vector = std::vector<T, fuzzer_allocator<T>>; 178 using Set = std::set<T, std::less<T>, fuzzer_allocator<T>>;
|