Skip to content

Commit 3e2cadc

Browse files
authored
Unrolled build for rust-lang#121847
Rollup merge of rust-lang#121847 - shamatar:btreemap_fix_implicits, r=cuviper Remove hidden use of Global Fixes rust-lang#121797
2 parents 2e3581b + fb8ac06 commit 3e2cadc

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)