Skip to content

Commit b3e5d07

Browse files
committed
'LANGUAGE Safe' works since GHC 7.4.
1 parent 650cb28 commit b3e5d07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Data/StateVar.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#endif
99
{-# LANGUAGE TypeFamilies #-}
1010
-- Foreign.ForeignPtr is unsafe before GHC-7.10
11-
#if __GLASGOW_HASKELL__ >=710 && MIN_VERSION_base(4,8,0)
11+
#if __GLASGOW_HASKELL__ >= 704 && MIN_VERSION_base(4,8,0)
1212
{-# LANGUAGE Safe #-}
13-
#elif __GLASGOW_HASKELL__ >=702
13+
#elif __GLASGOW_HASKELL__ >= 702
1414
{-# LANGUAGE Trustworthy #-}
1515
#endif
1616
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)