diff options
author | ayers <ayers@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-03 18:25:04 +0000 |
---|---|---|
committer | ayers <ayers@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-03 18:25:04 +0000 |
commit | 92effd8753f2b487c63e143127aa6f98e0e425c8 (patch) | |
tree | 8df602a1f8bcd6e41fe064fec258a4221b9bd66d /libobjc | |
parent | 0121f44708be8ff14d42356fe3f41e7db53d69ec (diff) | |
download | gcc-92effd8753f2b487c63e143127aa6f98e0e425c8.tar.gz |
2005-03-03 David Ayers <d.ayers@inode.at>
* objc/hash.h (OBJC_IGNORE_DEPRECATED_API): Update deprecated
version reference. Correct typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95840 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc')
-rw-r--r-- | libobjc/ChangeLog | 5 | ||||
-rw-r--r-- | libobjc/objc/hash.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index e9da0f5cc1d..09cbb7556ed 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +2005-03-03 David Ayers <d.ayers@inode.at> + + * objc/hash.h (OBJC_IGNORE_DEPRECATED_API): Update deprecated + version reference. Correct typo. + 2005-03-02 David Ayers <d.ayers@inode.at> PR libobjc/19024 diff --git a/libobjc/objc/hash.h b/libobjc/objc/hash.h index 48e33d37593..e3002c4539a 100644 --- a/libobjc/objc/hash.h +++ b/libobjc/objc/hash.h @@ -208,7 +208,7 @@ objc_compare_strings (const void *k1, const void *k2) } #ifndef OBJC_IGNORE_DEPRECATED_API -/* Deprecated as of 4.1 */ +/* Deprecated as of 4.0 */ static inline cache_ptr hash_new (unsigned int size, @@ -305,7 +305,7 @@ compare_strings (const void *k1, const void *k2) { return objc_compare_strings (k1, k2); } -#endif /* IGNORE_DEPRECATED_API */ +#endif /* OBJC_IGNORE_DEPRECATED_API */ #ifdef __cplusplus |