]> gitweb.michael.orlitzky.com - hath.git/commitdiff
Don't derive Typeable (GHC 8+).
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 6 Jul 2016 21:20:58 +0000 (17:20 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 6 Jul 2016 21:20:58 +0000 (17:20 -0400)
src/CommandLine.hs

index d0cf6f4f76bd7cdf038afa0be41f6510615674eb..9ecbc8a10ff218ae245a069ff750800ee69de4f3 100644 (file)
@@ -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