From b1d3111ba2f4c7d318632c330b4356fec52b4055 Mon Sep 17 00:00:00 2001 From: Oliver Scherer Date: Tue, 16 Oct 2018 10:39:48 +0200 Subject: [PATCH] Use forward compatible `FxHashMap` initialization --- src/librustc_mir/interpret/eval_context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc_mir/interpret/eval_context.rs b/src/librustc_mir/interpret/eval_context.rs index 13b6fa44de2..cf5358a9896 100644 --- a/src/librustc_mir/interpret/eval_context.rs +++ b/src/librustc_mir/interpret/eval_context.rs @@ -213,7 +213,7 @@ pub fn new( param_env, memory: Memory::new(tcx, memory_data), stack: Vec::new(), - vtables: FxHashMap(), + vtables: FxHashMap::default(), } } -- 2.44.0