mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-21 17:12:50 -06:00
haskell-bind/SG.hsc: fix unsafePerformIO import problem with ghc>=7.8
This commit is contained in:
@@ -12,7 +12,7 @@ module SG( SG, openSG, closeSG
|
|||||||
, queryTriple
|
, queryTriple
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Foreign
|
import Foreign hiding (unsafePerformIO)
|
||||||
import Foreign.C
|
import Foreign.C
|
||||||
import SG.FFI
|
import SG.FFI
|
||||||
import PGF2.FFI
|
import PGF2.FFI
|
||||||
@@ -20,7 +20,7 @@ import PGF2.Expr
|
|||||||
|
|
||||||
import Data.Typeable
|
import Data.Typeable
|
||||||
import Control.Exception(Exception,SomeException,catch,throwIO)
|
import Control.Exception(Exception,SomeException,catch,throwIO)
|
||||||
import System.IO.Unsafe(unsafeInterleaveIO)
|
import System.IO.Unsafe(unsafePerformIO,unsafeInterleaveIO)
|
||||||
|
|
||||||
-----------------------------------------------------------------------
|
-----------------------------------------------------------------------
|
||||||
-- Global database operations and types
|
-- Global database operations and types
|
||||||
|
|||||||
Reference in New Issue
Block a user