| 156 | } |
| 157 | |
| 158 | static bool test_stl_allocator6() { |
| 159 | std::vector<some_struct, mi_heap_destroy_stl_allocator<some_struct> > vec; |
| 160 | vec.push_back(some_struct()); |
| 161 | vec.pop_back(); |
| 162 | return vec.size() == 0; |
| 163 | } |
| 164 | |
| 165 | static void test_stl_allocators() { |
| 166 | test_stl_allocator1(); |
no test coverage detected