diff options
Diffstat (limited to 'compiler/main/Plugins.hs')
-rw-r--r-- | compiler/main/Plugins.hs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/main/Plugins.hs b/compiler/main/Plugins.hs index 8ead643f49..e83ec08805 100644 --- a/compiler/main/Plugins.hs +++ b/compiler/main/Plugins.hs @@ -23,11 +23,9 @@ import Fingerprint import Data.List import Outputable (Outputable(..), text, (<+>)) -#if __GLASGOW_HASKELL__ < 840 --Qualified import so we can define a Semigroup instance -- but it doesn't clash with Outputable.<> import qualified Data.Semigroup -#endif import Control.Monad @@ -125,7 +123,7 @@ instance Semigroup PluginRecompile where instance Monoid PluginRecompile where mempty = NoForceRecompile -#if __GLASGOW_HASKELL__ < 840 +#if __GLASGOW_HASKELL__ < 804 mappend = (Data.Semigroup.<>) #endif |