mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
Remove unnecessary allocation.
This commit is contained in:
parent
15c64a181b
commit
7a46a4f219
@ -2630,14 +2630,14 @@ impl ClashingExternDeclarations {
|
||||
let local_did = tcx.hir().local_def_id(fi.hir_id);
|
||||
let did = local_did.to_def_id();
|
||||
let instance = Instance::new(did, ty::List::identity_for_item(tcx, did));
|
||||
let name = tcx.symbol_name(instance).name.to_string();
|
||||
if self.seen_decls.contains_key(&name) {
|
||||
let name = tcx.symbol_name(instance).name;
|
||||
if let Some(&hir_id) = self.seen_decls.get(name) {
|
||||
// Avoid updating the map with the new entry when we do find a collision. We want to
|
||||
// make sure we're always pointing to the first definition as the previous declaration.
|
||||
// This lets us avoid emitting "knock-on" diagnostics.
|
||||
Some(*self.seen_decls.get(&name).unwrap())
|
||||
Some(hir_id)
|
||||
} else {
|
||||
self.seen_decls.insert(name, hid)
|
||||
self.seen_decls.insert(name.to_owned(), hid)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user