We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b0fd2 commit 8d99c52Copy full SHA for 8d99c52
zlib-rs/src/deflate.rs
@@ -1236,6 +1236,8 @@ pub(crate) struct State<'a> {
1236
/// is an active block and it is the last block.
1237
pub(crate) block_open: u8,
1238
1239
+ pub(crate) hash_calc_variant: HashCalcVariant,
1240
+
1241
bit_writer: BitWriter<'a>,
1242
1243
/// Use a faster search when the previous match is longer than this
@@ -1340,8 +1342,6 @@ pub(crate) struct State<'a> {
1340
1342
/// hash index of string to be inserted
1341
1343
pub(crate) ins_h: usize,
1344
- pub(crate) hash_calc_variant: HashCalcVariant,
-
1345
crc_fold: crate::crc32::Crc32Fold,
1346
gzhead: Option<&'a mut gz_header>,
1347
gzindex: usize,
0 commit comments