Skip to content

Commit 369a30f

Browse files
committed
Fix a GHC 7.10 warning.
1 parent 6a598dc commit 369a30f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Data/HashMap/Base.hs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ module Data.HashMap.Base
8888
, filterMapAux
8989
) where
9090

91-
#if __GLASGOW_HASKELL__ >= 709
92-
import Data.Functor ((<$>))
93-
#else
91+
#if __GLASGOW_HASKELL__ < 710
9492
import Control.Applicative ((<$>), Applicative(pure))
9593
import Data.Monoid (Monoid(mempty, mappend))
9694
import Data.Traversable (Traversable(..))

0 commit comments

Comments
 (0)