destroy elements of initialized storage p
| 106 | |
| 107 | //destroy elements of initialized storage p |
| 108 | void destroy (pointer p) |
| 109 | { |
| 110 | // destroy objects by calling their destructor |
| 111 | p->~T(); |
| 112 | } |
| 113 | |
| 114 | //deallocate storage p of deleted elements |
| 115 | void deallocate (pointer p, size_type ) |
no outgoing calls
no test coverage detected