aboutsummaryrefslogtreecommitdiff
path: root/c/common/dictionary.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/common/dictionary.h')
-rw-r--r--c/common/dictionary.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/common/dictionary.h b/c/common/dictionary.h
index 46fe533..3fa3391 100644
--- a/c/common/dictionary.h
+++ b/c/common/dictionary.h
@@ -27,13 +27,13 @@ typedef struct BrotliDictionary {
* Dictionary consists of words with length of [4..24] bytes.
* Values at [0..3] and [25..31] indices should not be addressed.
*/
- const uint8_t size_bits_by_length[32];
+ uint8_t size_bits_by_length[32];
/* assert(offset[i + 1] == offset[i] + (bits[i] ? (i << bits[i]) : 0)) */
- const uint32_t offsets_by_length[32];
+ uint32_t offsets_by_length[32];
/* assert(data_size == offsets_by_length[31]) */
- const size_t data_size;
+ size_t data_size;
/* Data array is not bound, and should obey to size_bits_by_length values.
Specified size matches default (RFC 7932) dictionary. Its size is