[svn:parrot] r45863 - trunk/src/pmc
petdance at svn.parrot.org
petdance at svn.parrot.org
Wed Apr 21 20:24:36 UTC 2010
Author: petdance
Date: Wed Apr 21 20:24:35 2010
New Revision: 45863
URL: https://trac.parrot.org/parrot/changeset/45863
Log:
removed two unused vars
Modified:
trunk/src/pmc/bignum.pmc
Modified: trunk/src/pmc/bignum.pmc
==============================================================================
--- trunk/src/pmc/bignum.pmc Wed Apr 21 20:07:22 2010 (r45862)
+++ trunk/src/pmc/bignum.pmc Wed Apr 21 20:24:35 2010 (r45863)
@@ -723,7 +723,6 @@
ASSERT_ARGS(bignum_get_string_size)
BIGNUM *bn;
- size_t n;
char *s;
mp_exp_t exponent;
@@ -1760,7 +1759,6 @@
*/
MULTI PMC *divide(BigNum value, PMC *dest) {
- BIGNUM *bn;
dest = Parrot_pmc_new(INTERP, VTABLE_type(INTERP, SELF));
bignum_div_bignum(INTERP, SELF, value, dest);
More information about the parrot-commits
mailing list