From 1e2f2d4790e7070be1a507dc8182070d2205fb34 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 4 Jul 2001 10:51:09 +0000 Subject: [PATCH] [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). --- Data/Array/Storable.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 1.7.10.4