(F)SLIT -> (f)sLit in Class
authorIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 12:12:11 +0000 (12:12 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 12:12:11 +0000 (12:12 +0000)
compiler/types/Class.lhs

index 2f946d8..fb7cab1 100644 (file)
@@ -17,8 +17,6 @@ module Class (
        classBigSig, classExtraBigSig, classTvsFds, classSCTheta
     ) where
 
-#include "HsVersions.h"
-
 import {-# SOURCE #-} TyCon    ( TyCon )
 import {-# SOURCE #-} TypeRep  ( PredType )
 
@@ -176,9 +174,9 @@ instance Outputable DefMeth where
 
 pprFundeps :: Outputable a => [FunDep a] -> SDoc
 pprFundeps []  = empty
-pprFundeps fds = hsep (ptext SLIT("|") : punctuate comma (map ppr_fd fds))
+pprFundeps fds = hsep (ptext (sLit "|") : punctuate comma (map ppr_fd fds))
               where
-                ppr_fd (us, vs) = hsep [interppSP us, ptext SLIT("->"), 
+                ppr_fd (us, vs) = hsep [interppSP us, ptext (sLit "->"), 
                                         interppSP vs]
 \end{code}