diff options
author | pacien | 2018-11-30 16:57:32 +0100 |
---|---|---|
committer | pacien | 2018-11-30 17:03:23 +0100 |
commit | 8af38da097b8358cb273baa37c748120461c718e (patch) | |
tree | 403397acf75540e76cbed619deaaa027da33a91f /src/huffmanencoder.nim | |
parent | b03508ea5e20370de26c6faf23bbbdd4e89ab1a9 (diff) | |
download | gziplike-8af38da097b8358cb273baa37c748120461c718e.tar.gz |
isolate bit IO
Diffstat (limited to 'src/huffmanencoder.nim')
-rw-r--r-- | src/huffmanencoder.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/huffmanencoder.nim b/src/huffmanencoder.nim index 60c3d46..05ed64f 100644 --- a/src/huffmanencoder.nim +++ b/src/huffmanencoder.nim | |||
@@ -15,7 +15,7 @@ | |||
15 | # along with this program. If not, see <https://www.gnu.org/licenses/>. | 15 | # along with this program. If not, see <https://www.gnu.org/licenses/>. |
16 | 16 | ||
17 | import tables | 17 | import tables |
18 | import integers, huffmantree, bitwriter | 18 | import integers, huffmantree, bitio/bitwriter |
19 | 19 | ||
20 | type HuffmanEncoder*[T, U: SomeUnsignedInt] = object | 20 | type HuffmanEncoder*[T, U: SomeUnsignedInt] = object |
21 | codebook: TableRef[T, U] | 21 | codebook: TableRef[T, U] |