Closed blueloveTH closed 1 year ago
With #define EMH_WYHASH_HASH 1 enabled, the static function wyhashstr calls wymix. However, wymix is not declared as static, causing a compile error. This commit adds static into wymix.
#define EMH_WYHASH_HASH 1
wyhashstr
wymix
static
With
#define EMH_WYHASH_HASH 1
enabled, the static functionwyhashstr
callswymix
. However,wymix
is not declared asstatic
, causing a compile error. This commit addsstatic
intowymix
.