True if the node is not used. Only head nodes might be unused.
| 86 | struct CleanupNode { |
| 87 | // True if the node is not used. Only head nodes might be unused. |
| 88 | bool IsEmpty() const { return function == nullptr; } |
| 89 | // Invokes the cleanup function. |
| 90 | void Run() { |
| 91 | assert(function != nullptr); |
no outgoing calls
no test coverage detected