References counter.

This commit is contained in:
chriseth
2018-02-05 16:43:39 +00:00
committed by Alex Beregszaszi
parent 5437457f46
commit 3c8b777b9b
3 changed files with 46 additions and 3 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ protected:
template <class T>
void walkVector(T const& _statements)
{
for (auto const& st: _statements)
visit(st);
for (auto const& statement: _statements)
visit(statement);
}
};