Skip to content

Commit

Permalink
Merge pull request #75 from c410-f3r/misc
Browse files Browse the repository at this point in the history
Fix type bound
  • Loading branch information
c410-f3r authored Aug 1, 2024
2 parents 261a971 + d128111 commit 1005ed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cl-aux/src/traits/dyn_contig_coll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub trait DynContigColl<E, T>:
+ crate::Extend<T, Error = E>
+ Push<T, Error = E>
+ Truncate<Input = usize>
+ WithCapacity<Input = usize>
+ WithCapacity<Error = E, Input = usize>
{
}

Expand All @@ -44,6 +44,6 @@ impl<E, T, U> DynContigColl<E, T> for U where
+ crate::Extend<T, Error = E>
+ Push<T, Error = E>
+ Truncate<Input = usize>
+ WithCapacity<Input = usize>
+ WithCapacity<Error = E, Input = usize>
{
}

0 comments on commit 1005ed3

Please sign in to comment.