Decrements the reference count.
| 205 | |
| 206 | /// Decrements the reference count. |
| 207 | void decRefCount() |
| 208 | { |
| 209 | AssertFatal(mRefCount, "Decrementing a reference with refcount 0!"); |
| 210 | if(!--mRefCount) |
| 211 | destroySelf(); |
| 212 | } |
| 213 | |
| 214 | protected: |
| 215 | U32 mRefCount; ///< reference counter for StrongRefPtr objects |
no outgoing calls
no test coverage detected