Browse Source

fix PR to work on VC6

Sean Barrett 5 năm trước cách đây
mục cha
commit
b3a74a5c8a
1 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. 1 2
      stb_ds.h

+ 1 - 2
stb_ds.h

@@ -833,8 +833,8 @@ void stbds_rand_seed(size_t seed)
 
 static size_t stbds_probe_position(size_t hash, size_t slot_count, size_t slot_log2)
 {
-  STBDS_NOTUSED(slot_log2);
   size_t pos;
+  STBDS_NOTUSED(slot_log2);
   pos = hash & (slot_count-1);
   #ifdef STBDS_INTERNAL_BUCKET_START
   pos &= ~STBDS_BUCKET_MASK;
@@ -1173,7 +1173,6 @@ size_t stbds_hash_bytes(void *p, size_t len, size_t seed)
 
 static int stbds_is_key_equal(void *a, size_t elemsize, void *key, size_t keysize, size_t keyoffset, int mode, size_t i)
 {
-  STBDS_NOTUSED(keyoffset);
   if (mode >= STBDS_HM_STRING)
     return 0==strcmp((char *) key, * (char **) ((char *) a + elemsize*i + keyoffset));
   else