Differences From Artifact [995026f596]:
- File
src/instance.m
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 2119) [annotate] [blame] [check-ins using]
To Artifact [dcb3da3872]:
- File
src/instance.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 2123) [annotate] [blame] [check-ins using]
| ︙ | |||
34 35 36 37 38 39 40 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - + - + |
if (constructSel == NULL)
constructSel = sel_registerName(".cxx_construct");
if (!class_respondsToSelector(cls, constructSel))
return true;
|
| ︙ | |||
61 62 63 64 65 66 67 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | - + - + | if (!callConstructors(cls, obj)) return nil; return obj; } |