From 50b860217cde08f40fcfdd430000a7efea0047f6 Mon Sep 17 00:00:00 2001 From: mikehh Date: Mon, 23 Aug 2010 08:35:34 +0000 Subject: [PATCH] does not seem to like wrapping _code git-svn-id: https://svn.parrot.org/parrot/trunk@48611 d31e2699-5ff4-0310-a27c-f18f2fbe73fe --- include/parrot/hash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/parrot/hash.h b/include/parrot/hash.h index 4559e364ae..c9839ea6f1 100644 --- a/include/parrot/hash.h +++ b/include/parrot/hash.h @@ -89,7 +89,7 @@ struct _hash { if (_bucket->key){ \ _found++; \ { \ - (_code) \ + _code \ } \ } \ _bucket++; \ @@ -102,7 +102,7 @@ struct _hash { for (_loc = (_hash)->mask; _loc >= 0; --_loc) { \ HashBucket *_bucket = (_hash)->index[_loc]; \ while (_bucket) { \ - (_code) \ + _code \ _bucket = _bucket->next; \ } \ } \ -- 2.11.4.GIT