From: simonmar Date: Thu, 13 Sep 2001 11:37:08 +0000 (+0000) Subject: [project @ 2001-09-13 11:37:08 by simonmar] X-Git-Tag: nhc98-1-18-release~1170 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=0bd9c2127306fe60f3f34f5ac87a37b074e877a6;p=ghc-base.git [project @ 2001-09-13 11:37:08 by simonmar] add missing import; make it compile --- diff --git a/System/Mem/StableName.hs b/System/Mem/StableName.hs index 12d2df1..0544ea9 100644 --- a/System/Mem/StableName.hs +++ b/System/Mem/StableName.hs @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: StableName.hs,v 1.1 2001/06/28 14:15:04 simonmar Exp $ +-- $Id: StableName.hs,v 1.2 2001/09/13 11:37:08 simonmar Exp $ -- -- Giving an object a stable (GC-invariant) name. -- @@ -22,6 +22,8 @@ module System.Mem.StableName import Prelude +import Data.Dynamic + #ifdef __GLASGOW_HASKELL__ import GHC.Base ( Int(..) ) import GHC.IOBase ( IO(..) )