| 247 | // Destroy an object at the specified address |
| 248 | template <typename U> |
| 249 | void destroy(U* p) FL_NOEXCEPT { |
| 250 | if (p == nullptr) return; |
| 251 | p->~U(); |
| 252 | } |
| 253 | }; |
| 254 | |
| 255 | // DEPRECATED: allocator_realloc is now REDUNDANT |
no outgoing calls
no test coverage detected