Commit 2412d4b1 authored by Andrew Gibiansky's avatar Andrew Gibiansky

Fix build: dont import liftIO in ghc 7.6 from ghcmonad

parent 15405445
......@@ -63,7 +63,13 @@ import qualified Linker
import TcType
import Unify
import InstEnv
#if MIN_VERSION_ghc(7, 8, 0)
import GhcMonad (liftIO, withSession)
#else
import GhcMonad (withSession)
#endif
import GHC hiding (Stmt, TypeSig)
import Exception hiding (evaluate)
import Outputable hiding ((<>))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment