summaryrefslogtreecommitdiff
path: root/compiler/utils/Pretty.lhs
diff options
context:
space:
mode:
authorIsaac Dupree <id@isaac.cedarswampstudios.org>2007-08-07 12:14:54 +0000
committerIsaac Dupree <id@isaac.cedarswampstudios.org>2007-08-07 12:14:54 +0000
commit01ecefa4b97106fec5c139c5514e5d56e59ecbaf (patch)
tree5fe97b253ff544ee2c8b8ebb13780c9d7fc883e2 /compiler/utils/Pretty.lhs
parenta65481fce16930ff0cd343c9278d9b8961bee94f (diff)
downloadhaskell-01ecefa4b97106fec5c139c5514e5d56e59ecbaf.tar.gz
Warning police: eliminate all defaulting within stage1
Defaulting makes compilation of multiple modules more complicated (re: #1405) Although it was all locally within functions, not because of the module monomorphism-restriction... but it's better to be clear what's meant, anyway. I changed some that were defaulting to Integer, to explicit Int, where Int seemed appropriate rather than Integer.
Diffstat (limited to 'compiler/utils/Pretty.lhs')
-rw-r--r--compiler/utils/Pretty.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Pretty.lhs b/compiler/utils/Pretty.lhs
index 96ea1fbfc5..51ecf31845 100644
--- a/compiler/utils/Pretty.lhs
+++ b/compiler/utils/Pretty.lhs
@@ -446,7 +446,7 @@ int n = text (show n)
integer n = text (show n)
float n = text (show n)
double n = text (show n)
-rational n = text (show (fromRat n))
+rational n = text (show (fromRat n :: Double))
--rational n = text (show (fromRationalX n)) -- _showRational 30 n)
quotes p = char '`' <> p <> char '\''