rustc_error, rustc_private, rustc_ast: Switch to stable hash containers
This commit is contained in:
parent
db9d86b58d
commit
8d3c30c004
8 changed files with 36 additions and 16 deletions
|
@ -22,7 +22,7 @@ use crate::{
|
|||
|
||||
use rustc_lint_defs::pluralize;
|
||||
|
||||
use rustc_data_structures::fx::FxHashMap;
|
||||
use rustc_data_structures::fx::{FxHashMap, FxIndexMap};
|
||||
use rustc_data_structures::sync::Lrc;
|
||||
use rustc_error_messages::FluentArgs;
|
||||
use rustc_span::hygiene::{ExpnKind, MacroKind};
|
||||
|
@ -1487,7 +1487,7 @@ impl EmitterWriter {
|
|||
);
|
||||
|
||||
// Contains the vertical lines' positions for active multiline annotations
|
||||
let mut multilines = FxHashMap::default();
|
||||
let mut multilines = FxIndexMap::default();
|
||||
|
||||
// Get the left-side margin to remove it
|
||||
let mut whitespace_margin = usize::MAX;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue