Repository : ssh://darcs.haskell.org//srv/darcs/nofib On branch : master
http://hackage.haskell.org/trac/ghc/changeset/2df6e3470d94f424a6e16e6d8c9b837f2685aebc >--------------------------------------------------------------- commit 2df6e3470d94f424a6e16e6d8c9b837f2685aebc Author: Simon Marlow <[email protected]> Date: Wed Nov 23 13:03:41 2011 +0000 fix build with GHC 7.4+ (add Show constraint) >--------------------------------------------------------------- real/lift/Print.lhs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/real/lift/Print.lhs b/real/lift/Print.lhs index 0f54615..8d81192 100644 --- a/real/lift/Print.lhs +++ b/real/lift/Print.lhs @@ -119,7 +119,7 @@ above. Finally @i_num@ converts an integer to an @Iseq@. -> i_num :: Num a => a -> Iseq +> i_num :: (Show a, Num a) => a -> Iseq > i_num = i_str . show > i_newline = i_str "\n" _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
