SF_INLINE C& operator *() const;
Pointer dereference operator converts the object from a pointer to a reference. This is commonly used when creating an object with operator new, in order to avoid having an object start with a refcount of 2.
Returns a reference of the object that is held by the smart pointer.