diff options
| author | Joey Hess <joeyh@joeyh.name> | 2015-12-19 16:52:53 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-12-19 16:52:53 -0400 |
| commit | 714270abfcf6433da29dc80fdcaff740ad2a0169 (patch) | |
| tree | 5a73c676e40ca029487845aa6bd87a74e93b8556 /src/System/Console/Concurrent | |
| parent | 4e4c7bb914779ded627bc28de116acd8b0867986 (diff) | |
Clean build with ghc 7.10.
Import Prelude after modules that cause warnings due to AMP change
Diffstat (limited to 'src/System/Console/Concurrent')
| -rw-r--r-- | src/System/Console/Concurrent/Internal.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/System/Console/Concurrent/Internal.hs b/src/System/Console/Concurrent/Internal.hs index f538a7de..a4cafb61 100644 --- a/src/System/Console/Concurrent/Internal.hs +++ b/src/System/Console/Concurrent/Internal.hs @@ -19,7 +19,6 @@ import System.Directory import System.Exit import Control.Monad import Control.Monad.IO.Class (liftIO, MonadIO) -import Control.Applicative import System.IO.Unsafe (unsafePerformIO) import Control.Concurrent import Control.Concurrent.STM @@ -30,6 +29,8 @@ import Data.Monoid import qualified System.Process as P import qualified Data.Text as T import qualified Data.Text.IO as T +import Control.Applicative +import Prelude import Utility.Monad import Utility.Exception |
