diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2011-06-03 18:37:44 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2011-06-03 18:37:44 +0000 |
commit | 4f570b66f187078ecf074830b0c56d29030e7a8a (patch) | |
tree | fcd264fdbef4308cdd9255c91071473c9164339a /libobjc | |
parent | 58cd1d70dd8cd4b95773c0487a5d2aecad2b4dc1 (diff) | |
download | gcc-4f570b66f187078ecf074830b0c56d29030e7a8a.zip gcc-4f570b66f187078ecf074830b0c56d29030e7a8a.tar.gz gcc-4f570b66f187078ecf074830b0c56d29030e7a8a.tar.bz2 |
In libobjc/: 2011-06-03 Nicola Pero <nicola.pero@meta-innovation.com>
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.
From-SVN: r174614
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 4de6621..e197762 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 a965806..e91fff7 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 17c20e2..0000000 --- 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 ece0f88..8719269 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 |