| 128 | struct some_struct { int i; int j; double z; }; |
| 129 | |
| 130 | static bool test_stl_allocator2() { |
| 131 | std::vector<some_struct, mi_stl_allocator<some_struct> > vec; |
| 132 | vec.push_back(some_struct()); |
| 133 | vec.pop_back(); |
| 134 | return vec.size() == 0; |
| 135 | } |
| 136 | |
| 137 | static bool test_stl_allocator3() { |
| 138 | std::vector<int, mi_heap_stl_allocator<int> > vec; |
no test coverage detected