diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-19 01:43:02 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-19 01:43:02 +0000 |
commit | 30d9a28fbe4f4207eb69fcf75d19814599b259ba (patch) | |
tree | 8874ae85b949a75465c84610c09b9c1547e1cd33 /libobjc | |
parent | 69cfe70ff09adc0bea3e12abca3633cbe444e98b (diff) | |
download | gcc-30d9a28fbe4f4207eb69fcf75d19814599b259ba.tar.gz |
In libobjc/:
2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com>
* objc/Object.h: Include deprecated/typedstream.h and
deprecated/hash.h instead of typedstream.h. Updated comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168043 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 5 | ||||
-rw-r--r-- | libobjc/objc/Object.h | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index dd0769029c8..b551ea4f92f 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,5 +1,10 @@ 2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com> + * objc/Object.h: Include deprecated/typedstream.h and + deprecated/hash.h instead of typedstream.h. Updated comments. + +2010-12-19 Nicola Pero <nicola.pero@meta-innovation.com> + * Makefile.in (OBJC_DEPRECATED_H): Added objc_msg_sendv.h. * objc/deprecated/objc_msg_sendv.h: New. * objc/message.h: Do not define retval_t, apply_t, arglist, diff --git a/libobjc/objc/Object.h b/libobjc/objc/Object.h index 379e906455a..f036b76b9a2 100644 --- a/libobjc/objc/Object.h +++ b/libobjc/objc/Object.h @@ -27,7 +27,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #define __object_INCLUDE_GNU #include "objc.h" -#include "typedstream.h" #ifdef __cplusplus extern "C" { @@ -56,6 +55,10 @@ extern "C" { - (BOOL)isEqual: (id)anObject; @end +/* All of the following includes were deprecated in GCC 4.6 and will + be removed in the next release. */ +#include "deprecated/hash.h" +#include "deprecated/typedstream.h" #include "deprecated/Object.h" #ifdef __cplusplus |