Changeset 1476 for branches/GNU/src/gcc/libobjc/objc
- Timestamp:
- Sep 7, 2004, 4:49:39 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc/libobjc/objc/hash.h
-
Property cvs2svn:cvs-rev
changed from
1.1.1.2
to1.1.1.3
r1475 r1476 173 173 unsigned int ret = 0; 174 174 unsigned int ctr = 0; 175 const char *ckey = key; 175 176 176 177 while (*(char *) key) { 178 ret ^= *(char *) key++ << ctr; 177 while (*ckey) { 178 ret ^= *ckey++ << ctr; 179 179 ctr = (ctr + 1) % sizeof (void *); 180 180 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.