[svn:parrot] r48760 - trunk/src/pmc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Thu Sep 2 07:38:30 UTC 2010


Author: mikehh
Date: Thu Sep  2 07:38:30 2010
New Revision: 48760
URL: https://trac.parrot.org/parrot/changeset/48760

Log:
fix codetest failure - trailing whitespace

Modified:
   trunk/src/pmc/integer.pmc

Modified: trunk/src/pmc/integer.pmc
==============================================================================
--- trunk/src/pmc/integer.pmc	Thu Sep  2 05:12:03 2010	(r48759)
+++ trunk/src/pmc/integer.pmc	Thu Sep  2 07:38:30 2010	(r48760)
@@ -1007,14 +1007,14 @@
         else {
             PMC *promoted;
             maybe_throw_overflow_error(INTERP);
-            promoted = Parrot_pmc_new_init_int(INTERP, enum_class_BigInt, 0);   
+            promoted = Parrot_pmc_new_init_int(INTERP, enum_class_BigInt, 0);
             return VTABLE_subtract_int(INTERP, promoted, a, promoted);
         }
     }
 
     VTABLE void i_neg() {
         const INTVAL a = SELF.get_integer();
-   
+
         if (a != PARROT_INTVAL_MIN)
             VTABLE_set_integer_native(INTERP, SELF, -a);
         else {
@@ -1214,7 +1214,7 @@
         else {
             PMC *promoted;
             maybe_throw_overflow_error(INTERP);
-            promoted = Parrot_pmc_new_init_int(INTERP, enum_class_BigInt, a);   
+            promoted = Parrot_pmc_new_init_int(INTERP, enum_class_BigInt, a);
             return VTABLE_neg(INTERP, promoted, dest);
         }
     }


More information about the parrot-commits mailing list