diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-12-14 21:57:31 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-12-14 21:57:31 +0000 |
commit | 9ecfa8de88025917ab3442db65caf62abd46d538 (patch) | |
tree | 950f2298d177e5fa36931f0eeb4ffb6aee7d0ff3 /libobjc/ChangeLog | |
parent | 48d69c57af11814091231df787dba116c4356c4c (diff) | |
download | gcc-9ecfa8de88025917ab3442db65caf62abd46d538.zip gcc-9ecfa8de88025917ab3442db65caf62abd46d538.tar.gz gcc-9ecfa8de88025917ab3442db65caf62abd46d538.tar.bz2 |
objects.c (object_copy): Do not #undef as we are no longer including objc/objc-api.h.
2010-12-14 Nicola Pero <nicola.pero@meta-innovation.com>
* objects.c (object_copy): Do not #undef as we are no longer
including objc/objc-api.h.
* selector.c: Include objc/runtime.h and
objc-private/module-abi-8.h. Do not include objc/objc-api.h and
objc/encoding.h. Updated
(__objc_register_selectors_from_class): Use struct
objc_method_list * instead of MethodList_t.
(__objc_register_selectors_from_list): Use Method instead of
Method_t.
(struct objc_method_description_list): Do not define here.
(__objc_register_instance_methods_to_class): Use struct
objc_method_list * instead of MethodList_t and Method instead of
Method_t.
From-SVN: r167818
Diffstat (limited to 'libobjc/ChangeLog')
-rw-r--r-- | libobjc/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 99f8e23..bbf4696 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,5 +1,21 @@ 2010-12-14 Nicola Pero <nicola.pero@meta-innovation.com> + * objects.c (object_copy): Do not #undef as we are no longer + including objc/objc-api.h. + * selector.c: Include objc/runtime.h and + objc-private/module-abi-8.h. Do not include objc/objc-api.h and + objc/encoding.h. Updated + (__objc_register_selectors_from_class): Use struct + objc_method_list * instead of MethodList_t. + (__objc_register_selectors_from_list): Use Method instead of + Method_t. + (struct objc_method_description_list): Do not define here. + (__objc_register_instance_methods_to_class): Use struct + objc_method_list * instead of MethodList_t and Method instead of + Method_t. + +2010-12-14 Nicola Pero <nicola.pero@meta-innovation.com> + * selector.c: Reindented some code and tidied up comments. No actual code changes. |