From fb27e584ddc500520820ec3b5ede1da7cc9d2853 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 6 Jul 2016 17:20:58 -0400 Subject: [PATCH] Don't derive Typeable (GHC 8+). --- src/CommandLine.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.43.2