Skip to content

Commit fb8ac06

Browse files
committed
remove hidden use of Global
1 parent 71a7b66 commit fb8ac06

File tree

1 file changed

+1
-1
lines changed
  • library/alloc/src/collections/btree

1 file changed

+1
-1
lines changed

library/alloc/src/collections/btree/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub struct BTreeMap<
180180
/// `ManuallyDrop` to control drop order (needs to be dropped after all the nodes).
181181
pub(super) alloc: ManuallyDrop<A>,
182182
// For dropck; the `Box` avoids making the `Unpin` impl more strict than before
183-
_marker: PhantomData<crate::boxed::Box<(K, V)>>,
183+
_marker: PhantomData<crate::boxed::Box<(K, V), A>>,
184184
}
185185

186186
#[stable(feature = "btree_drop", since = "1.7.0")]

0 commit comments

Comments
 (0)