From 33d6f38a20ffbd763f5f104c3512f0d62eefe625 Mon Sep 17 00:00:00 2001 From: Kazu Yamamoto Date: Mon, 6 Oct 2014 15:55:16 +0900 Subject: [PATCH] removing a warning. --- Language/Haskell/GhcMod/Utils.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Haskell/GhcMod/Utils.hs b/Language/Haskell/GhcMod/Utils.hs index d66a7e9..428aed8 100644 --- a/Language/Haskell/GhcMod/Utils.hs +++ b/Language/Haskell/GhcMod/Utils.hs @@ -1,13 +1,13 @@ {-# LANGUAGE CPP #-} module Language.Haskell.GhcMod.Utils where -import Control.Applicative ((<$>)) import Language.Haskell.GhcMod.Error import MonadUtils (MonadIO, liftIO) import System.Directory (getCurrentDirectory, setCurrentDirectory) import System.Exit (ExitCode(..)) import System.Process (readProcessWithExitCode) #ifndef SPEC +import Control.Applicative ((<$>)) import System.Environment import System.FilePath ((), takeDirectory) #endif