aboutsummaryrefslogtreecommitdiff
path: root/src/huffmanencoder.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/huffmanencoder.nim')
-rw-r--r--src/huffmanencoder.nim2
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
17import tables 17import tables
18import integers, huffmantree, bitwriter 18import integers, huffmantree, bitio/bitwriter
19 19
20type HuffmanEncoder*[T, U: SomeUnsignedInt] = object 20type HuffmanEncoder*[T, U: SomeUnsignedInt] = object
21 codebook: TableRef[T, U] 21 codebook: TableRef[T, U]