From: simonmar Date: Wed, 4 Jul 2001 10:51:09 +0000 (+0000) Subject: [project @ 2001-07-04 10:51:09 by simonmar] X-Git-Tag: nhc98-1-18-release~1222 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=1e2f2d4790e7070be1a507dc8182070d2205fb34;p=haskell-directory.git [project @ 2001-07-04 10:51:09 by simonmar] oops, better import Prelude (we have to explicitly import Prelude in all modules that aren't compiled with -fno-implicit-prelude so that ghc --make gets the dependencies right. This should really be fixed in CompManager somehow). --- diff --git a/Data/Array/Storable.hs b/Data/Array/Storable.hs index e725d2d..76d2dae 100644 --- a/Data/Array/Storable.hs +++ b/Data/Array/Storable.hs @@ -8,7 +8,7 @@ -- Stability : experimental -- Portability : non-portable -- --- $Id: Storable.hs,v 1.1 2001/07/04 10:48:39 simonmar Exp $ +-- $Id: Storable.hs,v 1.2 2001/07/04 10:51:09 simonmar Exp $ -- -- A storable array is an IO-mutable array which stores its -- contents in a contiguous memory block living in the C @@ -45,6 +45,8 @@ module Data.Array.Storable ( ) where +import Prelude + import Data.Array.Base import Data.Array.MArray import Foreign hiding (newArray)