diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-03 18:37:44 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-06-03 18:37:44 +0000 |
commit | 3ddc2a17c4bc01a654b1d7ed5ae41723e8794591 (patch) | |
tree | fcd264fdbef4308cdd9255c91071473c9164339a /libobjc | |
parent | 1e53920f848bded45425cf0ed9de9e77d5948c1d (diff) | |
download | gcc-3ddc2a17c4bc01a654b1d7ed5ae41723e8794591.tar.gz |
In libobjc/:
2011-06-03 Nicola Pero <nicola.pero@meta-innovation.com>
* objc/objc.h: Do not include deprecated/STR.h.
* objc/deprecated/STR.h: Removed.
* Makefile.in (OBJC_DEPRECATED_H): removed STR.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@174614 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 6 | ||||
-rw-r--r-- | libobjc/Makefile.in | 1 | ||||
-rw-r--r-- | libobjc/objc/deprecated/STR.h | 2 | ||||
-rw-r--r-- | libobjc/objc/objc.h | 2 |
4 files changed, 6 insertions, 5 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 4de6621eea5..e197762cb92 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,5 +1,11 @@ 2011-06-03 Nicola Pero <nicola.pero@meta-innovation.com> + * objc/objc.h: Do not include deprecated/STR.h. + * objc/deprecated/STR.h: Removed. + * Makefile.in (OBJC_DEPRECATED_H): removed STR.h. + +2011-06-03 Nicola Pero <nicola.pero@meta-innovation.com> + * Makefile.in (OBJC_H): Removed hash.h and sarray.h. (OBJC_DEPRECATED_H): Likewise. * libobjc.def (objc_hash_new, objc_hash_delete, objc_hash_add, diff --git a/libobjc/Makefile.in b/libobjc/Makefile.in index a9658061a8f..e91fff716a1 100644 --- a/libobjc/Makefile.in +++ b/libobjc/Makefile.in @@ -131,7 +131,6 @@ OBJC_DEPRECATED_H = \ MetaClass.h \ Object.h \ Protocol.h \ - STR.h \ objc_get_uninstalled_dtable.h \ objc_malloc.h \ objc_msg_sendv.h \ diff --git a/libobjc/objc/deprecated/STR.h b/libobjc/objc/deprecated/STR.h deleted file mode 100644 index 17c20e2d6e3..00000000000 --- a/libobjc/objc/deprecated/STR.h +++ /dev/null @@ -1,2 +0,0 @@ -/* Incredibly obsolete. */ -typedef char *STR; /* String alias */ diff --git a/libobjc/objc/objc.h b/libobjc/objc/objc.h index ece0f884105..8719269bb35 100644 --- a/libobjc/objc/objc.h +++ b/libobjc/objc/objc.h @@ -125,8 +125,6 @@ typedef id (*IMP)(id, SEL, ...); compiler to do some type-checking. */ #define Nil (Class)0 -#include "deprecated/STR.h" - /* TODO: Move the 'Protocol' declaration into objc/runtime.h. A Protocol is simply an object, not a basic Objective-C type. The Apple runtime defines Protocol in objc/runtime.h too, so it's good |