Auto merge of #1746 - bstrie:depfix, r=RalfJung

Replace deprecated `collections::Bound` with `ops::Bound`

Cc https://github.com/rust-lang/rust/issues/83242 , which resulted from https://github.com/rust-lang/rust/pull/82122 .
This commit is contained in:
bors 2021-03-17 23:20:59 +00:00
commit 12dac5c0f7
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
b3ac52646f7591a811fa9bf55995b24fd17ece08
36f1f04f18b89ba4a999bcfd6584663fd6fc1c5d

View file

@ -174,7 +174,7 @@ impl<'tcx> TlsData<'tcx> {
key: Option<TlsKey>,
thread_id: ThreadId,
) -> Option<(ty::Instance<'tcx>, Scalar<Tag>, TlsKey)> {
use std::collections::Bound::*;
use std::ops::Bound::*;
let thread_local = &mut self.keys;
let start = match key {