From 95dfdceb8b4dcc54a366949577d9ee389bad5bc3 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Tue, 24 May 2016 09:22:04 -0400 Subject: Remove 'deriving Typeable' statements Summary: Deriving `Typeable` has been a no-op since GHC 7.10, and now that we require 7.10+ to build GHC, we can remove all the redundant `deriving Typeable` statements in GHC. Test Plan: ./validate Reviewers: goldfire, austin, hvr, bgamari Reviewed By: austin, hvr, bgamari Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D2260 --- libraries/ghci/GHCi/TH.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libraries/ghci') diff --git a/libraries/ghci/GHCi/TH.hs b/libraries/ghci/GHCi/TH.hs index 152522166c..69f114cfd2 100644 --- a/libraries/ghci/GHCi/TH.hs +++ b/libraries/ghci/GHCi/TH.hs @@ -42,7 +42,7 @@ runModFinalizers = go =<< getState newtype GHCiQ a = GHCiQ { runGHCiQ :: QState -> IO (a, QState) } data GHCiQException = GHCiQException QState String - deriving (Show, Typeable) + deriving Show instance Exception GHCiQException -- cgit v1.2.1