You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The block passed to `noz_defer` is guaranteed to be non-escaping and thus always available on the stack at the point that defer triggers. This means we can use `__unsafe_unretained` to avoid an unnecessary `copy` of the block to the heap by ARC as an optimization.
0 commit comments