summaryrefslogtreecommitdiff
path: root/compiler/GHC/Utils/Outputable.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/GHC/Utils/Outputable.hs')
-rw-r--r--compiler/GHC/Utils/Outputable.hs6
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/GHC/Utils/Outputable.hs b/compiler/GHC/Utils/Outputable.hs
index 025f2bdae9..ea9c8daecd 100644
--- a/compiler/GHC/Utils/Outputable.hs
+++ b/compiler/GHC/Utils/Outputable.hs
@@ -1045,12 +1045,6 @@ instance Outputable Extension where
-- See Note [The OutputableP class]
class OutputableP env a where
pdoc :: env -> a -> SDoc
- pdocPrec :: Rational -> env -> a -> SDoc
- -- 0 binds least tightly
- -- We use Rational because there is always a
- -- Rational between any other two Rationals
- pdoc = pdocPrec 0
- pdocPrec _ = pdoc
-- | Wrapper for types having a Outputable instance when an OutputableP instance
-- is required.