Releases the local reference to the caller. The caller *must* delete the local reference when it is done with it.
| 115 | // Releases the local reference to the caller. The caller *must* delete the |
| 116 | // local reference when it is done with it. |
| 117 | T Release() { return static_cast<T>(this->ReleaseInternal()); } |
| 118 | |
| 119 | private: |
| 120 | // This class is only good for use on the thread it was created on so |
nothing calls this directly
no test coverage detected