Midstream changes for performance improvement related to superclasses and functional...
[ghc-hetmet.git] / compiler / types / InstEnv.lhs
index 49b49b8..7327992 100644 (file)
@@ -45,7 +45,6 @@ import Data.Maybe     ( isJust, isNothing )
 %************************************************************************
 
 \begin{code}
-type DFunId = Id
 data Instance 
   = Instance { is_cls  :: Name         -- Class name
        
@@ -541,7 +540,7 @@ insert_overlapping new_item (item:items)
 \begin{code}
 instanceBindFun :: TyVar -> BindFlag
 instanceBindFun tv | isTcTyVar tv && isExistentialTyVar tv = Skolem
-                  | otherwise                          = BindMe
+                  | otherwise                             = BindMe
    -- Note [Binding when looking up instances]
 \end{code}