Merge branch 'master' into ChaiScript_5_0_CPP_11

This commit is contained in:
Jason Turner 2014-02-22 14:44:38 -07:00
commit 20b40d3970

View File

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