summaryrefslogtreecommitdiff
path: root/compiler/hsSyn
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2012-08-05 14:18:22 +0100
committerIan Lynagh <ian@well-typed.com>2012-08-05 14:18:22 +0100
commit0e7aad2c6cda3db0a050bfe8afc56bbb2815e30c (patch)
tree14ebed297b997dffec35dcb22ab50614c8eb1aec /compiler/hsSyn
parent89900ff3096f34f1212dfe2b1dfd32adf5b3bf1b (diff)
downloadhaskell-0e7aad2c6cda3db0a050bfe8afc56bbb2815e30c.tar.gz
De-orphan the Outputable Char instance
Diffstat (limited to 'compiler/hsSyn')
-rw-r--r--compiler/hsSyn/HsSyn.lhs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/hsSyn/HsSyn.lhs b/compiler/hsSyn/HsSyn.lhs
index b770fac30b..aa487396b5 100644
--- a/compiler/hsSyn/HsSyn.lhs
+++ b/compiler/hsSyn/HsSyn.lhs
@@ -9,7 +9,6 @@ which is declared in the various \tr{Hs*} modules. This module,
therefore, is almost nothing but re-exporting.
\begin{code}
-{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# OPTIONS -fno-warn-tabs #-}
-- The above warning supression flag is a temporary kludge.
-- While working on this module you are encouraged to remove it and
@@ -96,9 +95,6 @@ data HsExtCore name -- Read from Foo.hcr
\begin{code}
-instance Outputable Char where
- ppr c = text [c]
-
instance (OutputableBndr name, HasOccName name)
=> Outputable (HsModule name) where