Skip to content

Commit bfa59bc

Browse files
committed
Remove unnecessary phantom data
1 parent dcc4b80 commit bfa59bc

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/adaptors/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,6 @@ pub struct TupleCombinations<I, T>
682682
{
683683
iter: T::Combination,
684684
_mi: PhantomData<I>,
685-
_mt: PhantomData<T>
686685
}
687686

688687
pub trait HasCombination<I>: Sized {
@@ -698,7 +697,6 @@ pub fn tuple_combinations<T, I>(iter: I) -> TupleCombinations<I, T>
698697
TupleCombinations {
699698
iter: T::Combination::from(iter),
700699
_mi: PhantomData,
701-
_mt: PhantomData,
702700
}
703701
}
704702

0 commit comments

Comments
 (0)