Skip to content

Commit

Permalink
IHaskell.Eval.Util: fix warnings on GHC 8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavsagar committed Nov 23, 2018
1 parent df3c0fc commit d415b76
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/IHaskell/Eval/Util.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,17 @@ module IHaskell.Eval.Util (
) where

import IHaskellPrelude
#if MIN_VERSION_ghc(8,6,0)
#else
import qualified Data.ByteString.Char8 as CBS
#endif

-- GHC imports.
import DynFlags
#if MIN_VERSION_ghc(8,6,0)
#else
import FastString
#endif
import GHC
import GhcMonad
import HscTypes
Expand Down

0 comments on commit d415b76

Please sign in to comment.