aboutsummaryrefslogtreecommitdiff
path: root/src/huffmandecoder.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/huffmandecoder.nim')
-rw-r--r--src/huffmandecoder.nim2
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
17import huffmantree, bitreader 17import huffmantree, bitio/bitreader
18 18
19type HuffmanDecoder*[T: SomeUnsignedInt] = object 19type HuffmanDecoder*[T: SomeUnsignedInt] = object
20 tree: HuffmanTreeNode[T] 20 tree: HuffmanTreeNode[T]