LargeInteger.st
branchjv
changeset 19167 699eef1bc815
parent 19158 cdce727939ab
parent 19162 dcefb6a62d18
child 19277 e9182dc00c6d
--- a/LargeInteger.st	Mon Feb 08 06:59:19 2016 +0100
+++ b/LargeInteger.st	Thu Feb 11 16:21:50 2016 +0000
@@ -314,6 +314,8 @@
     "Modified: / 8.5.1998 / 21:40:41 / cg"
 ! !
 
+
+
 !LargeInteger class methodsFor:'queries'!
 
 isBuiltInClass
@@ -2397,7 +2399,7 @@
 
     num := anInteger abs.
     SmallInteger maxBytes == 8 ifTrue:[
-        (num > 16rFFFFFFFF) ifTrue:[
+        (num > 16rFFFFFFFFFF) ifTrue:[
             "if num is too big (so that multiplying by a byte could create a Large)"
             ^ anInteger retry:#* coercing:self
         ].