diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-06-14 03:20:20 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-06-14 03:20:20 +0100 |
commit | 1eaa6683947f4ebe74c29b4844b47efb352f9a3b (patch) | |
tree | a887a65f8699e7dbf46e8d50c25b575e50d498b2 /p2pvr/daemon/containerIterator.h | |
parent | Switch to using project2's own DB mocking framework (diff) | |
download | p2pvr-1eaa6683947f4ebe74c29b4844b47efb352f9a3b.tar.bz2 p2pvr-1eaa6683947f4ebe74c29b4844b47efb352f9a3b.tar.xz p2pvr-1eaa6683947f4ebe74c29b4844b47efb352f9a3b.zip |
Compatibility with AppInstance and ExecContext changes
Diffstat (limited to 'p2pvr/daemon/containerIterator.h')
-rw-r--r-- | p2pvr/daemon/containerIterator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2pvr/daemon/containerIterator.h b/p2pvr/daemon/containerIterator.h index 14c339d..88976af 100644 --- a/p2pvr/daemon/containerIterator.h +++ b/p2pvr/daemon/containerIterator.h @@ -20,7 +20,7 @@ class ContainerIterator : public IHaveSubTasks { ObjectRowStateTmpl<typename T::value_type> rs; for (const auto & i : *container) { binder(rs, i); - rs.process(boost::bind(&ContainerIterator::executeChildren, this, ec)); + rs.process(ec, boost::bind(&ContainerIterator::executeChildren, this, ec)); } } |