From: Ian Lynagh Date: Wed, 6 Aug 2008 19:03:53 +0000 (+0000) Subject: Put some explicit import lists in Data.Typeable X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=749bc4bf881cac5208af6694e16952456e25388a;p=ghc-base.git Put some explicit import lists in Data.Typeable --- 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)