Skip to content

Commit

Permalink
Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vigna committed Oct 26, 2024
1 parent 1702a9f commit 48db29e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/graphs/bvgraph/codecs/dec_const.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl<
const K: usize,
> ConstCodesDecoderFactory<E, F, OFF, OUTDEGREES, REFERENCES, BLOCKS, INTERVALS, RESIDUALS, K>
where
for<'a> &'a OFF: IntoIterator<Item = usize>,
for<'a> &'a OFF: IntoIterator<Item = usize>, // This dependence can soon be removed, as there will be a IndexedSeq::iter method
{
/// Remaps the offsets in a slice of `usize`.
///
Expand Down
2 changes: 1 addition & 1 deletion src/graphs/bvgraph/codecs/dec_dyn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ pub struct DynCodesDecoderFactory<
impl<E: Endianness, F: BitReaderFactory<E>, OFF: IndexedSeq<Input = usize, Output = usize>>
DynCodesDecoderFactory<E, F, OFF>
where
for<'a> &'a OFF: IntoIterator<Item = usize>,
for<'a> &'a OFF: IntoIterator<Item = usize>, // This dependence can soon be removed, as there will be a IndexedSeq::iter method
{
/// Remaps the offsets in a slice of `usize`.
///
Expand Down

0 comments on commit 48db29e

Please sign in to comment.