From b7790955ccb856970b4473f61f4e69c5550e5093 Mon Sep 17 00:00:00 2001 From: Esa Ilari Vuokko Date: Wed, 9 Aug 2006 16:13:41 +0000 Subject: [PATCH] Fix Array imports --- compiler/utils/Digraph.lhs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 1.7.10.4