From 749bc4bf881cac5208af6694e16952456e25388a Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 6 Aug 2008 19:03:53 +0000 Subject: [PATCH] Put some explicit import lists in Data.Typeable --- Data/Typeable.hs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Data/Typeable.hs b/Data/Typeable.hs index cf48c95..85282bd 100644 --- a/Data/Typeable.hs +++ b/Data/Typeable.hs @@ -90,10 +90,11 @@ import Unsafe.Coerce #ifdef __GLASGOW_HASKELL__ import GHC.Base -import GHC.Show -import GHC.Err -import GHC.Num -import GHC.Float +import GHC.Show (Show(..), ShowS, + shows, showString, showChar, showParen) +import GHC.Err (undefined) +import GHC.Num (Integer, fromInteger, (+)) +import GHC.Float (Float, Double) import GHC.Real ( rem, Ratio ) import GHC.IOBase (IORef,newIORef,unsafePerformIO) -- 1.7.10.4