Home
last modified time | relevance | path

Searched defs:allocator_with_state (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/histogram/test/
Ddetail_make_default_test.cpp15 struct allocator_with_state { struct
18 allocator_with_state(int s = 0) : state(s) {} in allocator_with_state() argument
21 allocator_with_state(const allocator_with_state<U>& o) : state(o.state) {} in allocator_with_state() argument
31 bool operator==(const allocator_with_state<U>&) const { in operator ==() argument
36 bool operator!=(const allocator_with_state<U>&) const { in operator !=() argument
45 using V = std::vector<int, allocator_with_state<int>>; in main() argument