On Mon, 25 Jan 2010, chromatic wrote:

> On Monday 25 January 2010 at 15:36, Parrot  wrote:

> >  {{{
> >  "./src/pmc/orderedhash.pmc", line 89: warning: syntax error:  empty
> >  declaration
> >  }}}
> 
> Thanks.  I don't see the problem with line 89, but I've fixed the other four 
> in 
> r43591.

Thanks.  It's just a trailing semicolon.  I wasn't sure if I'd have a 
chance to fix it tonight, so I thought I'd just report it.  Here's the 
trailing semicolon fix (which undoubtedly won't survive email2trac, but 
it's the best I can do at the moment).

diff -r -u parrot-orig/src/pmc/orderedhash.pmc 
parrot-andy/src/pmc/orderedhash.pmc
--- parrot-orig/src/pmc/orderedhash.pmc 2010-01-25 19:35:12.000000000 -0500
+++ parrot-andy/src/pmc/orderedhash.pmc 2010-01-25 19:37:18.366527672 -0500
@@ -86,7 +86,7 @@
     VTABLE_set_pmc_keyed_int(interp, ret, ORDERED_HASH_ITEM_KEY, key);
     VTABLE_set_pmc_keyed_int(interp, ret, ORDERED_HASH_ITEM_VALUE, value);
     return ret;
-};
+}
 
 /* Get list_item by index */
 static PMC*


-- 
    Andy Dougherty              [email protected]
_______________________________________________
parrot-tickets mailing list
[email protected]
http://lists.parrot.org/mailman/listinfo/parrot-tickets

Reply via email to