From 8a80ed0a84261013ff81bc147713e066585749ff Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 7 Jul 2016 12:29:07 -0400 Subject: [PATCH] Don't derive Typeable in Timeout.hs (GHC 8+). --- src/Timeout.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 2.43.2