using liftIO from CoreMonad.

This commit is contained in:
Kazu Yamamoto
2014-03-27 15:08:07 +09:00
parent 07ec988251
commit 660a1e95f5
7 changed files with 11 additions and 13 deletions

View File

@@ -11,7 +11,6 @@ module Language.Haskell.GhcMod.Gap (
, setCtx
, fOptions
, toStringBuffer
, liftIO
, showSeverityCaption
, setCabalPkg
, addDevPkgs
@@ -69,10 +68,8 @@ import GHC hiding (ClsInst)
import GHC hiding (Instance)
#endif
#if __GLASGOW_HASKELL__ >= 702
#if __GLASGOW_HASKELL__ < 702
import CoreMonad (liftIO)
#else
import HscTypes (liftIO)
import Pretty
#endif