| 293 | typename mem_manager |
| 294 | > |
| 295 | array<T,mem_manager>:: |
| 296 | ~array ( |
| 297 | ) |
| 298 | { |
| 299 | if (array_elements) |
| 300 | { |
| 301 | pool.deallocate_array(array_elements); |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | // ---------------------------------------------------------------------------------------- |
| 306 |
nothing calls this directly
no test coverage detected