Differences From Artifact [cf051d40ec]:
- File
src/runtime/class.m
— part of check-in
[9da9b2b64c]
at
2014-04-14 00:45:58
on branch trunk
— Coding style
No functional change intended. (user: js, size: 19093) [annotate] [blame] [check-ins using]
To Artifact [0d2c7753b9]:
- File src/runtime/class.m — part of check-in [e35b10115e] at 2014-05-14 20:28:11 on branch trunk — Always use __foo__ instead of foo for attributes (user: js, size: 19097) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
75 76 77 78 79 80 81 | for (ml = cls->methodlist; ml != NULL; ml = ml->next) for (i = 0; i < ml->count; i++) objc_register_selector( (struct objc_abi_selector*)&ml->methods[i]); } | | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | for (ml = cls->methodlist; ml != NULL; ml = ml->next) for (i = 0; i < ml->count; i++) objc_register_selector( (struct objc_abi_selector*)&ml->methods[i]); } inline Class __attribute__((__gnu_inline__)) objc_classname_to_class(const char *name, bool cache) { Class c; if (classes == NULL) return Nil; |
︙ | ︙ |