From 67cabf3cdf9435cdbf488de74060d0ea3e5ee45d Mon Sep 17 00:00:00 2001 From: Nikolay Yakimov Date: Sun, 6 Dec 2015 21:05:12 +0300 Subject: [PATCH] Add monoid import for ghc<7.10 --- src/GHCMod/Options/DocUtils.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/GHCMod/Options/DocUtils.hs b/src/GHCMod/Options/DocUtils.hs index 644995e..e315173 100644 --- a/src/GHCMod/Options/DocUtils.hs +++ b/src/GHCMod/Options/DocUtils.hs @@ -9,6 +9,7 @@ module GHCMod.Options.DocUtils ( ) where import Options.Applicative +import Data.Monoid (Monoid) -- for ghc<7.10 import Text.PrettyPrint.ANSI.Leijen as PP hiding ((<>), (<$>), (<$$>), int) desc :: [Doc] -> InfoMod a