| 149 | } |
| 150 | |
| 151 | static bool test_stl_allocator5() { |
| 152 | std::vector<int, mi_heap_destroy_stl_allocator<int> > vec; |
| 153 | vec.push_back(1); |
| 154 | vec.pop_back(); |
| 155 | return vec.size() == 0; |
| 156 | } |
| 157 | |
| 158 | static bool test_stl_allocator6() { |
| 159 | std::vector<some_struct, mi_heap_destroy_stl_allocator<some_struct> > vec; |
no test coverage detected