Skip to content

Commit 51d6dda

Browse files
committed
use u16 for index Count type
1 parent 4d66013 commit 51d6dda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use std::hash::Hash;
1212
use FxHashMap as Dict;
1313

1414
// n.b. this constrains the maximum number index appearances < 256
15-
type Count = u8;
15+
type Count = u16;
1616
type Score = f32;
1717
type GreedyScore = OrderedFloat<Score>;
1818
type SSAPath = Vec<Vec<u32>>;

0 commit comments

Comments
 (0)