From: Esa Ilari Vuokko Date: Wed, 9 Aug 2006 16:13:41 +0000 (+0000) Subject: Fix Array imports X-Git-Tag: Before_FC_branch_merge~244 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=b7790955ccb856970b4473f61f4e69c5550e5093;p=ghc-hetmet.git Fix Array imports --- diff --git a/compiler/utils/Digraph.lhs b/compiler/utils/Digraph.lhs index c49087c..8fda332 100644 --- a/compiler/utils/Digraph.lhs +++ b/compiler/utils/Digraph.lhs @@ -44,7 +44,9 @@ import Array import List import Outputable -#if __GLASGOW_HASKELL__ >= 504 +#if __GLASGOW_HASKELL__ > 604 +import Data.Array.ST +#elif __GLASGOW_HASKELL__ >= 504 import Data.Array.ST hiding ( indices, bounds ) #else import ST