mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
fix missing semi-colon for default clause
This commit is contained in:
parent
9c6bd9ed97
commit
936e155beb
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue