From 532fd69dc5591e422da27741703f96c18b0b103b Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 7 Jul 2016 12:26:07 -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 85381de..bd8b2f9 100644 --- a/src/CommandLine.hs +++ b/src/CommandLine.hs @@ -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) -- 2.43.2