summaryrefslogtreecommitdiff
path: root/src/support/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/hash.h')
-rw-r--r--src/support/hash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/support/hash.h b/src/support/hash.h
index 98d7ceead..647369ac8 100644
--- a/src/support/hash.h
+++ b/src/support/hash.h
@@ -25,7 +25,8 @@ namespace wasm {
typedef uint32_t HashType;
inline HashType rehash(HashType x, HashType y) {
- // see http://www.cse.yorku.ca/~oz/hash.html and https://stackoverflow.com/a/2595226/1176841
+ // see http://www.cse.yorku.ca/~oz/hash.html and
+ // https://stackoverflow.com/a/2595226/1176841
HashType hash = 5381;
while (x) {
hash = ((hash << 5) + hash) ^ (x & 0xff);