Commit d415b76c authored by Vaibhav Sagar's avatar Vaibhav Sagar

IHaskell.Eval.Util: fix warnings on GHC 8.6

parent df3c0fc1
...@@ -27,11 +27,17 @@ module IHaskell.Eval.Util ( ...@@ -27,11 +27,17 @@ module IHaskell.Eval.Util (
) where ) where
import IHaskellPrelude import IHaskellPrelude
#if MIN_VERSION_ghc(8,6,0)
#else
import qualified Data.ByteString.Char8 as CBS import qualified Data.ByteString.Char8 as CBS
#endif
-- GHC imports. -- GHC imports.
import DynFlags import DynFlags
#if MIN_VERSION_ghc(8,6,0)
#else
import FastString import FastString
#endif
import GHC import GHC
import GhcMonad import GhcMonad
import HscTypes import HscTypes
......
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