Differences From Artifact [163d513c31]:
- File src/instance.m — part of check-in [c3ec9bb65a] at 2017-07-01 19:43:58 on branch trunk — instance.m: Allow nil for objc_destructInstance() (user: js, size: 2156) [annotate] [blame] [check-ins using] [more...]
To Artifact [f080731090]:
- File src/instance.m — part of check-in [166fd50e82] at 2017-10-01 09:28:44 on branch trunk — Nullability fixes for macOS High Sierra (user: js, size: 2172) [annotate] [blame] [check-ins using]
| ︙ | |||
53 54 55 56 57 58 59 | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | - + |
objc_constructInstance(Class cls, void *bytes)
{
id obj = (id)bytes;
if (cls == Nil || bytes == NULL)
return nil;
|
| ︙ |