| 103 | void AddRefForRegistration() { m_registeredRef = true; } |
| 104 | |
| 105 | void ReleaseForRegistration() |
| 106 | { |
| 107 | m_object = nullptr; |
| 108 | m_registeredRef = false; |
| 109 | if (m_refs == 0) |
| 110 | delete this; |
| 111 | } |
| 112 | }; |
| 113 | |
| 114 |
nothing calls this directly
no outgoing calls
no test coverage detected