fix missing semi-colon for default clause

This commit is contained in:
Riccardo Mottola 2025-03-18 00:35:27 +01:00
parent 9c6bd9ed97
commit 936e155beb

View file

@ -599,6 +599,7 @@ objc_getAssociatedObject(id object, const void *key)
found = [found retain];
break;
default:
;
}
GS_MUTEX_UNLOCK(block->mutex);
switch (policy)
@ -608,6 +609,7 @@ objc_getAssociatedObject(id object, const void *key)
found = [found autorelease];
break;
default:
;
}
}
else