Skip to content

Commit b1d3111

Browse files
committed
Use forward compatible FxHashMap initialization
1 parent c95ee9e commit b1d3111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/librustc_mir/interpret/eval_context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tc
213213
param_env,
214214
memory: Memory::new(tcx, memory_data),
215215
stack: Vec::new(),
216-
vtables: FxHashMap(),
216+
vtables: FxHashMap::default(),
217217
}
218218
}
219219

0 commit comments

Comments
 (0)