Don't qualify PhantomData

This commit is contained in:
Richard Feldman 2024-10-21 22:30:28 -04:00
parent c9c7156db5
commit 8bb7b5460f
No known key found for this signature in database
GPG key ID: DAC334802F365236

View file

@ -42,7 +42,7 @@ impl<T, U> EitherIndex<T, U> {
Self {
index: input.index | Self::MASK,
_marker: std::marker::PhantomData,
_marker: PhantomData,
}
}