SmallInteger.st
changeset 18289 9d906f0b71eb
parent 18255 aedbc27ea6c0
child 18292 8d4fe353a2d2
child 18370 0ffb12e5f1b4
--- a/SmallInteger.st	Sun Apr 26 13:23:27 2015 +0200
+++ b/SmallInteger.st	Sun Apr 26 13:30:22 2015 +0200
@@ -4590,7 +4590,6 @@
 
 %{  /* NOCONTEXT */
 #ifndef __SCHTEAM__
-
     if (__bothSmallInteger(min, max)) {
 # if TAG_INT == 1
 	// tag bit does not change the magnitude order
@@ -4614,7 +4613,7 @@
 	RETURN ( true );
 # endif
     }
-#endif
+#endif /* not SCHTEAM */
 %}.
     (self < min) ifTrue:[^ false].
     (self > max) ifTrue:[^ false].
@@ -4835,11 +4834,11 @@
 !SmallInteger class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.233 2015-04-21 19:41:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.234 2015-04-26 11:30:22 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.233 2015-04-21 19:41:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.234 2015-04-26 11:30:22 cg Exp $'
 ! !