[svn:parrot] r48611 - trunk/include/parrot
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Mon Aug 23 08:35:34 UTC 2010
Author: mikehh
Date: Mon Aug 23 08:35:34 2010
New Revision: 48611
URL: https://trac.parrot.org/parrot/changeset/48611
Log:
does not seem to like wrapping _code
Modified:
trunk/include/parrot/hash.h
Modified: trunk/include/parrot/hash.h
==============================================================================
--- trunk/include/parrot/hash.h Mon Aug 23 08:22:45 2010 (r48610)
+++ trunk/include/parrot/hash.h Mon Aug 23 08:35:34 2010 (r48611)
@@ -89,7 +89,7 @@
if (_bucket->key){ \
_found++; \
{ \
- (_code) \
+ _code \
} \
} \
_bucket++; \
@@ -102,7 +102,7 @@
for (_loc = (_hash)->mask; _loc >= 0; --_loc) { \
HashBucket *_bucket = (_hash)->index[_loc]; \
while (_bucket) { \
- (_code) \
+ _code \
_bucket = _bucket->next; \
} \
} \
More information about the parrot-commits
mailing list