From 667591b168c804d3eeae503dff1c848ed6852412 Mon Sep 17 00:00:00 2001 From: David Terei Date: Tue, 9 Aug 2011 11:39:05 -0700 Subject: [PATCH] Fix conditional pragma to work with 6.12 --- Data/IntMap.hs | 2 +- Data/Map.hs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/IntMap.hs b/Data/IntMap.hs index cf6a1e4f2..aef81cd7d 100644 --- a/Data/IntMap.hs +++ b/Data/IntMap.hs @@ -1,7 +1,7 @@ +{-# LANGUAGE NoBangPatterns, ScopedTypeVariables #-} #if !defined(TESTING) && __GLASGOW_HASKELL__ >= 701 {-# LANGUAGE Trustworthy #-} #endif -{-# LANGUAGE NoBangPatterns, ScopedTypeVariables #-} ----------------------------------------------------------------------------- -- | -- Module : Data.IntMap diff --git a/Data/Map.hs b/Data/Map.hs index 7a27c2fe5..faac867ef 100644 --- a/Data/Map.hs +++ b/Data/Map.hs @@ -1,7 +1,7 @@ +{-# LANGUAGE NoBangPatterns #-} #if !defined(TESTING) && __GLASGOW_HASKELL__ >= 701 {-# LANGUAGE Safe #-} #endif -{-# LANGUAGE NoBangPatterns #-} ----------------------------------------------------------------------------- -- | -- Module : Data.Map