aboutsummaryrefslogtreecommitdiffstats
path: root/src/gc.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-15 19:24:00 +0000
committerDavid Robillard <d@drobilla.net>2009-10-15 19:24:00 +0000
commitc139e62f1fa1341eaa9c6f7b7d8e54601721a329 (patch)
treea20204e68f4ed3128973cd32f443cb9a8f91a9c4 /src/gc.cpp
parent7743d332e41c7795dcbaa49511293f22597e4db7 (diff)
downloadresp-c139e62f1fa1341eaa9c6f7b7d8e54601721a329.tar.gz
resp-c139e62f1fa1341eaa9c6f7b7d8e54601721a329.tar.bz2
resp-c139e62f1fa1341eaa9c6f7b7d8e54601721a329.zip
Remove all use of ATuple::at().
git-svn-id: http://svn.drobilla.net/resp/tuplr@229 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/gc.cpp')
-rw-r--r--src/gc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gc.cpp b/src/gc.cpp
index 96d412a..acbcb0e 100644
--- a/src/gc.cpp
+++ b/src/gc.cpp
@@ -58,7 +58,7 @@ mark(const Object* obj)
obj->mark(true);
const ATuple* tup = dynamic_cast<const ATuple*>((AST*)obj);
if (tup)
- FOREACH(ATuple::const_iterator, i, *tup)
+ FOREACHP(ATuple::const_iterator, i, tup)
mark(*i);
}