Searched defs:allocator_with_state (Results 1 – 1 of 1) sorted by relevance
15 struct allocator_with_state { struct18 allocator_with_state(int s = 0) : state(s) {} in allocator_with_state() argument21 allocator_with_state(const allocator_with_state<U>& o) : state(o.state) {} in allocator_with_state() function31 bool operator==(const allocator_with_state<U>&) const { in operator ==() argument36 bool operator!=(const allocator_with_state<U>&) const { in operator !=() argument45 using V = std::vector<int, allocator_with_state<int>>; in main() argument