summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compiler/types/Class.lhs2
-rw-r--r--compiler/types/InstEnv.lhs2
-rw-r--r--compiler/types/TyCon.lhs2
3 files changed, 3 insertions, 3 deletions
diff --git a/compiler/types/Class.lhs b/compiler/types/Class.lhs
index 3b71ce39b5..a96cb2f20e 100644
--- a/compiler/types/Class.lhs
+++ b/compiler/types/Class.lhs
@@ -34,7 +34,7 @@ import Util
import Outputable
import FastString
-import Data.Typeable hiding (TyCon)
+import Data.Typeable (Typeable)
import qualified Data.Data as Data
\end{code}
diff --git a/compiler/types/InstEnv.lhs b/compiler/types/InstEnv.lhs
index 96b02a898f..d05495f7ac 100644
--- a/compiler/types/InstEnv.lhs
+++ b/compiler/types/InstEnv.lhs
@@ -35,7 +35,7 @@ import UniqFM
import Id
import FastString
-import Data.Data hiding (TyCon, mkTyConApp)
+import Data.Data ( Data, Typeable )
import Data.Maybe ( isJust, isNothing )
\end{code}
diff --git a/compiler/types/TyCon.lhs b/compiler/types/TyCon.lhs
index c8766d9c6f..45a11bc89d 100644
--- a/compiler/types/TyCon.lhs
+++ b/compiler/types/TyCon.lhs
@@ -97,7 +97,7 @@ import FastString
import Constants
import Util
import qualified Data.Data as Data
-import Data.Typeable hiding (TyCon)
+import Data.Typeable (Typeable)
\end{code}
-----------------------------------------------