From: Michael Orlitzky Date: Wed, 6 Jul 2016 21:20:58 +0000 (-0400) Subject: Don't derive Typeable (GHC 8+). X-Git-Tag: 0.4.0~21 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=hath.git;a=commitdiff_plain;h=fb27e584ddc500520820ec3b5ede1da7cc9d2853 Don't derive Typeable (GHC 8+). --- diff --git a/src/CommandLine.hs b/src/CommandLine.hs index d0cf6f4..9ecbc8a 100644 --- a/src/CommandLine.hs +++ b/src/CommandLine.hs @@ -16,7 +16,6 @@ import System.Console.CmdArgs ( Ann, Annotate( (:=) ), Data, - Typeable, (+=), auto, cmdArgs_, @@ -65,7 +64,7 @@ data Args = Duped { barriers :: Bool } | Diffed { barriers :: Bool } | Listed { barriers :: Bool } - deriving (Data, Show, Typeable) + deriving (Data, Show) -- | Description of the 'Regexed' mode. regexed_description :: String