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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sun Sep 19 07:57:35 UTC 2010


Author: mikehh
Date: Sun Sep 19 07:57:34 2010
New Revision: 49151
URL: https://trac.parrot.org/parrot/changeset/49151

Log:
fix codetest failures - trailing whitespace and
there should be at least one space between a C
keyword and any subsequent open parenthesis

Modified:
   trunk/src/pmc/hashiterator.pmc

Modified: trunk/src/pmc/hashiterator.pmc
==============================================================================
--- trunk/src/pmc/hashiterator.pmc	Sun Sep 19 06:57:54 2010	(r49150)
+++ trunk/src/pmc/hashiterator.pmc	Sun Sep 19 07:57:34 2010	(r49151)
@@ -79,10 +79,10 @@
 {
     ASSERT_ARGS(advance_to_next)
     Parrot_HashIterator_attributes * const attrs  = PARROT_HASHITERATOR(self);
-    
-    while(attrs->elements > 0){
+
+    while (attrs->elements > 0) {
         attrs->bucket = attrs->parrot_hash->buckets + attrs->pos++;
-        if (attrs->bucket->key){
+        if (attrs->bucket->key) {
             break;
         }
     }


More information about the parrot-commits mailing list