diff options
Diffstat (limited to 'compiler/utils/UniqDFM.hs')
-rw-r--r-- | compiler/utils/UniqDFM.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/utils/UniqDFM.hs b/compiler/utils/UniqDFM.hs index e5424f2c5d..c41e00469b 100644 --- a/compiler/utils/UniqDFM.hs +++ b/compiler/utils/UniqDFM.hs @@ -51,7 +51,6 @@ module UniqDFM ( alwaysUnsafeUfmToUdfm, ) where -import FastString import Unique ( Uniquable(..), Unique, getKey ) import Outputable @@ -297,5 +296,5 @@ instance Outputable a => Outputable (UniqDFM a) where pprUniqDFM :: (a -> SDoc) -> UniqDFM a -> SDoc pprUniqDFM ppr_elt ufm = brackets $ fsep $ punctuate comma $ - [ ppr uq <+> ptext (sLit ":->") <+> ppr_elt elt + [ ppr uq <+> text ":->" <+> ppr_elt elt | (uq, elt) <- udfmToList ufm ] |