Fix type on range.chai

This commit is contained in:
Jason Turner 2014-02-22 14:44:07 -07:00
parent 9c35ede59a
commit 04131d208b

View File

@ -5,7 +5,7 @@ def for_each(container, function)
while (!range.empty()) while (!range.empty())
{ {
function(range.front()); function(range.front());
range.popFront(); range.pop_front();
} }
} }