summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2012-06-12 15:03:36 +0100
committerIan Lynagh <igloo@earth.li>2012-06-12 15:03:36 +0100
commit91667cc91a4343b7855d3351afba0b077fee62c8 (patch)
tree3645ecf491e3655bfe13d31b8f6098e8f0f31056
parentb2ec66c38731d6ee90659f95d03206e036947faf (diff)
downloadhaskell-91667cc91a4343b7855d3351afba0b077fee62c8.tar.gz
Remove an unused Show instance
-rw-r--r--compiler/basicTypes/Demand.lhs3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/basicTypes/Demand.lhs b/compiler/basicTypes/Demand.lhs
index c4143edd45..bd3638a093 100644
--- a/compiler/basicTypes/Demand.lhs
+++ b/compiler/basicTypes/Demand.lhs
@@ -305,9 +305,6 @@ newtype StrictSig = StrictSig DmdType
instance Outputable StrictSig where
ppr (StrictSig ty) = ppr ty
-instance Show StrictSig where
- show (StrictSig ty) = showSDoc (ppr ty)
-
mkStrictSig :: DmdType -> StrictSig
mkStrictSig dmd_ty = StrictSig dmd_ty