summaryrefslogtreecommitdiff
path: root/Types
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-05-10 16:19:56 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-05-10 16:20:30 -0400
commit5201613fc97b855bf60979ac7e2550ad08fa3798 (patch)
treeaed27d1952cd8455aecdd501cfbc5e0b43bfbb5c /Types
parent21b14af6904123d5c5cc1c575aee7203f65d7800 (diff)
rejigger imports for clean build with ghc 7.10's AMP changes
The explict import Prelude after import Control.Applicative is a trick to avoid a warning.
Diffstat (limited to 'Types')
-rw-r--r--Types/DesktopNotify.hs1
-rw-r--r--Types/Difference.hs3
2 files changed, 3 insertions, 1 deletions
diff --git a/Types/DesktopNotify.hs b/Types/DesktopNotify.hs
index 9ea51401f..e6df05ab1 100644
--- a/Types/DesktopNotify.hs
+++ b/Types/DesktopNotify.hs
@@ -8,6 +8,7 @@
module Types.DesktopNotify where
import Data.Monoid
+import Prelude
data DesktopNotify = DesktopNotify
{ notifyStart :: Bool
diff --git a/Types/Difference.hs b/Types/Difference.hs
index 064703bf7..1bab3fe36 100644
--- a/Types/Difference.hs
+++ b/Types/Difference.hs
@@ -20,9 +20,10 @@ import Utility.PartialPrelude
import qualified Git
import qualified Git.Config
+import qualified Data.Set as S
import Data.Maybe
import Data.Monoid
-import qualified Data.Set as S
+import Prelude
-- Describes differences from the v5 repository format.
--