]> gitweb.michael.orlitzky.com - haeredes.git/commitdiff
Don't derive Typeable (GHC 8+).
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 7 Jul 2016 16:26:07 +0000 (12:26 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 7 Jul 2016 16:26:07 +0000 (12:26 -0400)
src/CommandLine.hs

index 85381de8703e85868f2308b7bf0644b2159a1008..bd8b2f984ccb9432cd7d69dab7c2a809beaa6258 100644 (file)
@@ -9,7 +9,6 @@ import System.Console.CmdArgs (
   Ann,
   Annotate( (:=) ),
   Data,
-  Typeable,
   (+=),
   args,
   auto,
@@ -99,7 +98,7 @@ data Args =
        server :: Maybe String,
        timeout :: Timeout,
        delegates :: [String] }
-  deriving (Data, Show, Typeable)
+  deriving (Data, Show)