| 135 | } |
| 136 | |
| 137 | static bool test_stl_allocator3() { |
| 138 | std::vector<int, mi_heap_stl_allocator<int> > vec; |
| 139 | vec.push_back(1); |
| 140 | vec.pop_back(); |
| 141 | return vec.size() == 0; |
| 142 | } |
| 143 | |
| 144 | static bool test_stl_allocator4() { |
| 145 | std::vector<some_struct, mi_heap_stl_allocator<some_struct> > vec; |
no test coverage detected