use proper GHC version number. 704 means 7.4

This commit is contained in:
Greg Weber 2012-03-12 13:58:57 -07:00
parent 64a52a1f49
commit 6c406f89d5
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 6c10efccbad0cf12be2339171d931aeb035ef5dd
Subproject commit 6a95e0a8dbc1b3d26d58c1eaadf24d1bdaa48c8b

View File

@ -6,7 +6,7 @@ module Import
, module Data.Monoid
, module Control.Applicative
, Text
#if __GLASGOW_HASKELL__ < 740
#if __GLASGOW_HASKELL__ < 704
, (<>)
#endif
) where
@ -19,7 +19,7 @@ import Control.Applicative ((<$>), (<*>), pure)
import Data.Text (Text)
import Settings.StaticFiles
#if __GLASGOW_HASKELL__ < 740
#if __GLASGOW_HASKELL__ < 704
infixr 5 <>
(<>) :: Monoid m => m -> m -> m
(<>) = mappend