From 6cc09fc8b2b678ea605254ea9a0fd58da3e4d44b Mon Sep 17 00:00:00 2001 From: varkor Date: Thu, 21 Mar 2019 12:38:05 +0000 Subject: [PATCH] Remove `TypeVariableMap` --- src/librustc/infer/type_variable.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/librustc/infer/type_variable.rs b/src/librustc/infer/type_variable.rs index a5b2e591f91b..96a9f9520b40 100644 --- a/src/librustc/infer/type_variable.rs +++ b/src/librustc/infer/type_variable.rs @@ -60,8 +60,6 @@ pub enum TypeVariableOrigin { Generalized(ty::TyVid), } -pub type TypeVariableMap = FxHashMap; - struct TypeVariableData { origin: TypeVariableOrigin, diverging: bool,