| 21 | namespace Win32 { |
| 22 | |
| 23 | void LocalAllocDeleter::operator()(pointer p) const |
| 24 | { |
| 25 | if (p != nullptr) |
| 26 | LocalFree(p); |
| 27 | } |
| 28 | |
| 29 | void GlobalAllocDeleter::operator()(pointer p) const |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected