We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e3581b + fb8ac06 commit 3e2cadcCopy full SHA for 3e2cadc
library/alloc/src/collections/btree/map.rs
@@ -180,7 +180,7 @@ pub struct BTreeMap<
180
/// `ManuallyDrop` to control drop order (needs to be dropped after all the nodes).
181
pub(super) alloc: ManuallyDrop<A>,
182
// For dropck; the `Box` avoids making the `Unpin` impl more strict than before
183
- _marker: PhantomData<crate::boxed::Box<(K, V)>>,
+ _marker: PhantomData<crate::boxed::Box<(K, V), A>>,
184
}
185
186
#[stable(feature = "btree_drop", since = "1.7.0")]
0 commit comments