Skip to content
Snippets Groups Projects
Commit 655b318c authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1997-11-13 16:54:56 by simonm]

correct minBound for Ints.
parent 6d3ef5e5
No related merge requests found
......@@ -583,8 +583,8 @@ eftInt now step
instance Bounded Int where
minBound = negate 2147483647 -- **********************
maxBound = 2147483647 -- **********************
minBound = negate 214748367 - 1 -- **********************
maxBound = 2147483647 -- **********************
instance Num Int where
(+) x y = plusInt x y
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment