Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fmt
  • Loading branch information
ascjones committed Jun 22, 2021
commit 1c34c602687691434b25e99a07146d0f295d80e3
7 changes: 3 additions & 4 deletions src/impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,9 +292,9 @@ mod bit_vec {
use super::*;

impl<O, T> TypeInfo for bitvec::vec::BitVec<O, T>
where
O: bitvec::order::BitOrder + TypeInfo + 'static,
T: bitvec::store::BitStore + TypeInfo + 'static,
where
O: bitvec::order::BitOrder + TypeInfo + 'static,
T: bitvec::store::BitStore + TypeInfo + 'static,
{
type Identity = Self;

Expand Down Expand Up @@ -323,4 +323,3 @@ mod bit_vec {
}
}
}