From: simonm Date: Fri, 15 Jan 1999 13:11:04 +0000 (+0000) Subject: [project @ 1999-01-15 13:11:04 by simonm] X-Git-Tag: Approx_2487_patches~94 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=2602df9823a804631c422df38ef53a62c9dd4cc5;p=ghc-hetmet.git [project @ 1999-01-15 13:11:04 by simonm] A couple of Int type signatures to avoid H98 Integer defaulting. --- diff --git a/ghc/compiler/main/Constants.lhs b/ghc/compiler/main/Constants.lhs index d5d641f..fa4cdbc 100644 --- a/ghc/compiler/main/Constants.lhs +++ b/ghc/compiler/main/Constants.lhs @@ -87,8 +87,8 @@ module Constants ( All pretty arbitrary: \begin{code} -mAX_TUPLE_SIZE = 37 -mAX_CONTEXT_REDUCTION_DEPTH = 20 +mAX_TUPLE_SIZE = (37 :: Int) +mAX_CONTEXT_REDUCTION_DEPTH = (20 :: Int) \end{code} \begin{code}