Update blocks_runtime.m

This commit is contained in:
Zenny Chen 2017-11-19 13:14:17 +08:00 committed by GitHub
parent d0d7238172
commit fd5744356f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -207,7 +207,7 @@ struct StackBlockClass {
void *
_Block_copy(const void *src)
{
struct StackBlockClass *self = (struct StackBlockClass*)src;
struct StackBlockClass *self = (struct StackBlockClass *)src;
struct StackBlockClass *ret = self;
extern void _NSConcreteStackBlock;
@ -232,7 +232,7 @@ _Block_copy(const void *src)
void
_Block_release(const void *src)
{
struct StackBlockClass *self = (struct StackBlockClass*)src;
struct StackBlockClass *self = (struct StackBlockClass *)src;
extern void _NSConcreteStackBlock;
if (self->isa == &_NSConcreteStackBlock