Skip to content

Commit 65b348c

Browse files
committed
Auto merge of #1746 - bstrie:depfix, r=RalfJung
Replace deprecated `collections::Bound` with `ops::Bound` Fixes rust-lang/rust#83242 , which resulted from rust-lang/rust#82122 .
2 parents 80d6b56 + 4f899ce commit 65b348c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shims/tls.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ impl<'tcx> TlsData<'tcx> {
174174
key: Option<TlsKey>,
175175
thread_id: ThreadId,
176176
) -> Option<(ty::Instance<'tcx>, Scalar<Tag>, TlsKey)> {
177-
use std::collections::Bound::*;
177+
use std::ops::Bound::*;
178178

179179
let thread_local = &mut self.keys;
180180
let start = match key {

0 commit comments

Comments
 (0)