diff options
author | Ian Lynagh <igloo@earth.li> | 2012-06-12 15:03:36 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-06-12 15:03:36 +0100 |
commit | 91667cc91a4343b7855d3351afba0b077fee62c8 (patch) | |
tree | 3645ecf491e3655bfe13d31b8f6098e8f0f31056 | |
parent | b2ec66c38731d6ee90659f95d03206e036947faf (diff) | |
download | haskell-91667cc91a4343b7855d3351afba0b077fee62c8.tar.gz |
Remove an unused Show instance
-rw-r--r-- | compiler/basicTypes/Demand.lhs | 3 |
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 |