Fix GHC 7.10 warnings

This commit is contained in:
Daniel Gröber
2015-08-03 03:09:56 +02:00
parent 160cec86bb
commit f023d939e2
26 changed files with 62 additions and 37 deletions

View File

@@ -2,7 +2,7 @@ module Language.Haskell.GhcMod.Browse (
browse
) where
import Control.Applicative ((<$>))
import Control.Applicative
import Control.Exception (SomeException(..))
import Data.Char
import Data.List
@@ -20,6 +20,7 @@ import Outputable
import TyCon (isAlgTyCon)
import Type (dropForAlls, splitFunTy_maybe, mkFunTy, isPredTy)
import Exception (ExceptionMonad, ghandle)
import Prelude
----------------------------------------------------------------