]> git.saurik.com Git - apple/objc4.git/blobdiff - runtime/hashtable2.mm
objc4-646.tar.gz
[apple/objc4.git] / runtime / hashtable2.mm
index 478f68923b4c573f3f13db22218245dc85f1e966..20b525596cbe9442be5afd1556ac88186615b2bb 100644 (file)
@@ -485,8 +485,8 @@ uintptr_t NXPtrHash (const void *info, const void *data) {
     };
     
 uintptr_t NXStrHash (const void *info, const void *data) {
-    register uintptr_t hash = 0;
-    register unsigned char     *s = (unsigned char *) data;
+    uintptr_t  hash = 0;
+    unsigned char      *s = (unsigned char *) data;
     /* unsigned to avoid a sign-extend */
     /* unroll the loop */
     if (s) for (; ; ) {