diff options
author | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-28 14:38:59 (GMT) |
---|---|---|
committer | Przemyslaw Skibinski <inikep@gmail.com> | 2016-12-28 14:38:59 (GMT) |
commit | 312d88249feee4c1b7511ac9fffce10ed6802ba7 (patch) | |
tree | 7129ddf2bfb327648e5c566c96b851a1c3ea97b7 /lib/lz4hc.h | |
parent | 3d5bb38977cbb200fe0950095b7a10261b7ff792 (diff) | |
download | lz4-312d88249feee4c1b7511ac9fffce10ed6802ba7.zip lz4-312d88249feee4c1b7511ac9fffce10ed6802ba7.tar.gz lz4-312d88249feee4c1b7511ac9fffce10ed6802ba7.tar.bz2 |
removed nextToUpdateBT
Diffstat (limited to 'lib/lz4hc.h')
-rw-r--r-- | lib/lz4hc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/lz4hc.h b/lib/lz4hc.h index ad731d9..1036fd0 100644 --- a/lib/lz4hc.h +++ b/lib/lz4hc.h @@ -154,7 +154,6 @@ typedef struct uint32_t dictLimit; /* below that point, need extDict */ uint32_t lowLimit; /* below that point, no more dict */ uint32_t nextToUpdate; /* index from which to continue dictionary update */ - uint32_t nextToUpdateBT; /* index from which to continue binary tree update */ uint32_t searchNum; /* only for optimal parser */ uint32_t compressionLevel; } LZ4HC_CCtx_internal; @@ -172,7 +171,6 @@ typedef struct unsigned int dictLimit; /* below that point, need extDict */ unsigned int lowLimit; /* below that point, no more dict */ unsigned int nextToUpdate; /* index from which to continue dictionary update */ - unsigned int nextToUpdateBT; /* index from which to continue binary tree update */ unsigned int searchNum; /* only for optimal parser */ unsigned int compressionLevel; } LZ4HC_CCtx_internal; |