Skip to content

Commit

Permalink
Merge #7702
Browse files Browse the repository at this point in the history
7702: Remove use of deprecated `std::collections::Bound` r=Veykril a=bstrie

`std::collections::Bound` has been deprecated since Rust 1.26, but due to a bug (rust-lang/rust#82080) it never triggered a visible deprecation warning. Fixing this is being done in rust-lang/rust#82122 , but landing that requires rustc-analyzer to build without triggering any deprecation warnings (/~https://github.com/rust-lang-ci/rust/runs/1911884006#step:24:19361).

Co-authored-by: bstrie <865233+bstrie@users.noreply.github.com>
  • Loading branch information
bors[bot] and bstrie authored Feb 17, 2021
2 parents 4c4de19 + 3c92207 commit 94f56eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/proc_macro_srv/src/rustc_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
use crate::proc_macro::bridge::{self, server};

use std::collections::{Bound, HashMap};
use std::collections::HashMap;
use std::hash::Hash;
use std::iter::FromIterator;
use std::ops::Bound;
use std::str::FromStr;
use std::{ascii, vec::IntoIter};

Expand Down

0 comments on commit 94f56eb

Please sign in to comment.