| 156 | } |
| 157 | |
| 158 | void deallocate(void* pointer) |
| 159 | { |
| 160 | if (pointer == &storage_) |
| 161 | { |
| 162 | in_use_ = false; |
| 163 | } |
| 164 | else |
| 165 | { |
| 166 | ::operator delete(pointer); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | private: |
| 171 | // Storage space used for handler-based custom memory allocation. |
nothing calls this directly
no test coverage detected