Browse Source

Clear build on GHC 7.10

Marcos Dumay de Medeiros 8 years ago
parent
commit
ca96f195ef
2 changed files with 1 additions and 2 deletions
  1. 1 1
      more-monads.cabal
  2. 0 1
      src/Control/Monad/Extras.hs

+ 1 - 1
more-monads.cabal

@@ -22,7 +22,7 @@ library
     Data.Either.Extras
   -- other-modules:       
   -- other-extensions:    
-  build-depends:       base >=4.7 && <4.8
+  build-depends:       base >=4.8 && <4.9
   hs-source-dirs:      src
   default-language:    Haskell2010
   ghc-options: -Wall -fno-warn-unused-do-bind -fwarn-incomplete-patterns

+ 0 - 1
src/Control/Monad/Extras.hs

@@ -9,7 +9,6 @@ module Control.Monad.Extras (
   )where
 
 import Control.Monad
-import Control.Applicative
 
 -- | A version of if with monadic test.
 ifM :: Monad m => m Bool -> m a -> m a -> m a