[commit: packages/containers] ghc-head: Fix a typo in GHC #if guard (68aaa66)
git at git.haskell.org
git at git.haskell.org
Fri Mar 14 10:05:19 UTC 2014
Repository : ssh://git@git.haskell.org/containers
On branch : ghc-head
Link : http://git.haskell.org/packages/containers.git/commitdiff/68aaa661dec34b6c842e5feaa39df6c11744ea64
>---------------------------------------------------------------
commit 68aaa661dec34b6c842e5feaa39df6c11744ea64
Author: Johan Tibell <johan.tibell at gmail.com>
Date: Fri Mar 14 10:30:37 2014 +0100
Fix a typo in GHC #if guard
>---------------------------------------------------------------
68aaa661dec34b6c842e5feaa39df6c11744ea64
Data/Set/Base.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Data/Set/Base.hs b/Data/Set/Base.hs
index 720ffb5..f863d17 100644
--- a/Data/Set/Base.hs
+++ b/Data/Set/Base.hs
@@ -229,7 +229,7 @@ data Set a = Bin {-# UNPACK #-} !Size !a !(Set a) !(Set a)
type Size = Int
-#if __GLASGOW_HASKELL >= 708
+#if __GLASGOW_HASKELL__ >= 708
type role Set nominal
#endif
More information about the ghc-commits
mailing list