diff options
author | Ian Lynagh <igloo@earth.li> | 2012-06-12 02:03:14 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-06-12 02:20:29 +0100 |
commit | 4b1350ead394472cb9612a4ae81ae160c208d7e3 (patch) | |
tree | c1893f04852606042bff62483cf9f5d8e5f80d12 /compiler/prelude | |
parent | 6f2f83800dd89af67cbf6de4d9b2afda4af0938f (diff) | |
download | haskell-4b1350ead394472cb9612a4ae81ae160c208d7e3.tar.gz |
Remove some redundant Show instances
Diffstat (limited to 'compiler/prelude')
-rw-r--r-- | compiler/prelude/PrimOp.lhs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/prelude/PrimOp.lhs b/compiler/prelude/PrimOp.lhs index 39bee1fb9d..b055376060 100644 --- a/compiler/prelude/PrimOp.lhs +++ b/compiler/prelude/PrimOp.lhs @@ -80,9 +80,6 @@ instance Ord PrimOp where instance Outputable PrimOp where ppr op = pprPrimOp op - -instance Show PrimOp where - showsPrec p op = showsPrecSDoc p (pprPrimOp op) \end{code} An @Enum@-derived list would be better; meanwhile... (ToDo) |