Skip to content

Commit

Permalink
Use forward compatible FxHashMap initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Oct 16, 2018
1 parent c95ee9e commit b1d3111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_mir/interpret/eval_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ impl<'a, 'mir, 'tcx: 'mir, M: Machine<'a, 'mir, 'tcx>> EvalContext<'a, 'mir, 'tc
param_env,
memory: Memory::new(tcx, memory_data),
stack: Vec::new(),
vtables: FxHashMap(),
vtables: FxHashMap::default(),
}
}

Expand Down

0 comments on commit b1d3111

Please sign in to comment.