aboutsummaryrefslogtreecommitdiff
path: root/c/enc/hash_to_binary_tree_inc.h
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2017-08-24 13:29:48 +0200
committerGitHub <noreply@github.com>2017-08-24 13:29:48 +0200
commit653543541319e2318d2fc572cf5c7f3275b9c12c (patch)
tree171c39078ed1944327083e7125bc2ee59160e67e /c/enc/hash_to_binary_tree_inc.h
parent4f455cac329d0c612887123c9dc6de9a66fa8490 (diff)
downloadbrotli-653543541319e2318d2fc572cf5c7f3275b9c12c.zip
brotli-653543541319e2318d2fc572cf5c7f3275b9c12c.tar.gz
brotli-653543541319e2318d2fc572cf5c7f3275b9c12c.tar.bz2
Update (#589)
* cleanup * fix `unbrotli` CLI * Java retouch for faster JS decoder
Diffstat (limited to 'c/enc/hash_to_binary_tree_inc.h')
-rwxr-xr-xc/enc/hash_to_binary_tree_inc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/c/enc/hash_to_binary_tree_inc.h b/c/enc/hash_to_binary_tree_inc.h
index 1530c1b..30c71b5 100755
--- a/c/enc/hash_to_binary_tree_inc.h
+++ b/c/enc/hash_to_binary_tree_inc.h
@@ -20,7 +20,9 @@
#define BUCKET_SIZE (1 << BUCKET_BITS)
static BROTLI_INLINE size_t FN(HashTypeLength)(void) { return 4; }
-static BROTLI_INLINE size_t FN(StoreLookahead)(void) { return MAX_TREE_COMP_LENGTH; }
+static BROTLI_INLINE size_t FN(StoreLookahead)(void) {
+ return MAX_TREE_COMP_LENGTH;
+}
static uint32_t FN(HashBytes)(const uint8_t *data) {
uint32_t h = BROTLI_UNALIGNED_LOAD32(data) * kHashMul32;