From: Michael Orlitzky Date: Thu, 7 Jul 2016 16:29:07 +0000 (-0400) Subject: Don't derive Typeable in Timeout.hs (GHC 8+). X-Git-Tag: 0.5.1~18 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=haeredes.git;a=commitdiff_plain;h=8a80ed0a84261013ff81bc147713e066585749ff Don't derive Typeable in Timeout.hs (GHC 8+). --- diff --git a/src/Timeout.hs b/src/Timeout.hs index 6f0f3d4..0b0f2e1 100644 --- a/src/Timeout.hs +++ b/src/Timeout.hs @@ -8,11 +8,10 @@ where import Data.Data (Data) import System.Console.CmdArgs.Default (Default(..)) -import Data.Typeable (Typeable) newtype Timeout = Timeout { seconds :: Int } - deriving (Data, Show, Typeable) + deriving (Data, Show) instance Default Timeout where def = Timeout 15