diff options
Diffstat (limited to 'p2pvr/lib/containerIterator.h')
-rw-r--r-- | p2pvr/lib/containerIterator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2pvr/lib/containerIterator.h b/p2pvr/lib/containerIterator.h index dac2639..14c339d 100644 --- a/p2pvr/lib/containerIterator.h +++ b/p2pvr/lib/containerIterator.h @@ -17,7 +17,7 @@ class ContainerIterator : public IHaveSubTasks { void execute(ExecContext * ec) const { - ObjectRowState<typename T::value_type> rs; + ObjectRowStateTmpl<typename T::value_type> rs; for (const auto & i : *container) { binder(rs, i); rs.process(boost::bind(&ContainerIterator::executeChildren, this, ec)); |