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/huffmandecoder.nim | |
parent | b03508ea5e20370de26c6faf23bbbdd4e89ab1a9 (diff) | |
download | gziplike-8af38da097b8358cb273baa37c748120461c718e.tar.gz |
isolate bit IO
Diffstat (limited to 'src/huffmandecoder.nim')
-rw-r--r-- | src/huffmandecoder.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/huffmandecoder.nim b/src/huffmandecoder.nim index 4df712a..5cf4ca5 100644 --- a/src/huffmandecoder.nim +++ b/src/huffmandecoder.nim | |||
@@ -14,7 +14,7 @@ | |||
14 | # You should have received a copy of the GNU Affero General Public License | 14 | # You should have received a copy of the GNU Affero General Public License |
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 huffmantree, bitreader | 17 | import huffmantree, bitio/bitreader |
18 | 18 | ||
19 | type HuffmanDecoder*[T: SomeUnsignedInt] = object | 19 | type HuffmanDecoder*[T: SomeUnsignedInt] = object |
20 | tree: HuffmanTreeNode[T] | 20 | tree: HuffmanTreeNode[T] |