sync with GFCC changes

This commit is contained in:
kr_angelov
2006-12-28 16:45:21 +00:00
parent c70fa0831e
commit 094cab7057
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ data Expr =
| EIndex Expr Expr
| ECall Expr [Expr]
| EVar Ident
| EInt Integer
| EInt Int
| EDbl Double
| EStr String
| ETrue

View File

@@ -68,7 +68,7 @@ prPrec :: Int -> Int -> Doc -> Doc
prPrec i j = if j<i then parenth else id
instance Print Integer where
instance Print Int where
prt _ x = doc (shows x)