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

NotFound at svn.parrot.org NotFound at svn.parrot.org
Thu Sep 16 14:41:02 UTC 2010


Author: NotFound
Date: Thu Sep 16 14:41:01 2010
New Revision: 49063
URL: https://trac.parrot.org/parrot/changeset/49063

Log:
Don't use return in void functions, TT #1792, rg++

Modified:
   trunk/src/pmc/integer.pmc

Modified: trunk/src/pmc/integer.pmc
==============================================================================
--- trunk/src/pmc/integer.pmc	Thu Sep 16 13:54:13 2010	(r49062)
+++ trunk/src/pmc/integer.pmc	Thu Sep 16 14:41:01 2010	(r49063)
@@ -1228,7 +1228,7 @@
         else {
             maybe_throw_overflow_error(INTERP);
             SELF = upgrade_self_to_bignum(INTERP, SELF);
-            return VTABLE_i_neg(INTERP, SELF);
+            VTABLE_i_neg(INTERP, SELF);
         }
     }
 


More information about the parrot-commits mailing list