fix build ob gcc8, and anyway break after default is safe code style

This commit is contained in:
Riccardo Mottola 2025-03-08 18:27:10 +00:00
parent a46f86837f
commit c912f47ca1

View file

@ -507,6 +507,7 @@ setAssociation(association *a, const void *key, id value,
value = [value retain]; value = [value retain];
break; break;
default: default:
break;
} }
oldObject = a->value; oldObject = a->value;
@ -525,6 +526,7 @@ setAssociation(association *a, const void *key, id value,
[oldObject release]; [oldObject release];
break; break;
default: default:
break;
} }
} }