#FEATURE
authorClaus Gittinger <cg@exept.de>
Sat, 27 Feb 2016 00:26:01 +0100
changeset 19261 02cb0c66a1b8
parent 19260 bf94da6b67ee
child 19262 cf39fe4ec276
#FEATURE class: Fraction changed: #numerator:denominator:
Fraction.st
--- a/Fraction.st	Sat Feb 27 00:25:00 2016 +0100
+++ b/Fraction.st	Sat Feb 27 00:26:01 2016 +0100
@@ -99,7 +99,6 @@
             if (den != __mkSmallInteger(0)) {
                 if (__CanDoQuickAlignedNew(sizeof(struct __Fraction))) {    /* OBJECT ALLOCATION */
                     OBJ newFraction;
-                    int spc;
                     INT iDen;
                     INT iNum;
 
@@ -160,7 +159,7 @@
      Fraction numerator:8 denominator:16  
     "
 
-    "Modified: / 26-02-2016 / 21:52:05 / cg"
+    "Modified: / 27-02-2016 / 00:25:47 / cg"
 !
 
 readDecimalFractionFrom:aStringOrStream onError:exceptionBlock