diff options
Diffstat (limited to 'p2pvr/lib/containerIterator.h')
-rw-r--r-- | p2pvr/lib/containerIterator.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/p2pvr/lib/containerIterator.h b/p2pvr/lib/containerIterator.h index 6c43a41..2b61055 100644 --- a/p2pvr/lib/containerIterator.h +++ b/p2pvr/lib/containerIterator.h @@ -8,11 +8,10 @@ template <typename T> class ContainerIterator : public IHaveSubTasks { public: - template <typename ... Parents> - ContainerIterator(const T * con, const Parents & ... p) : + ContainerIterator(const T * con) : SourceObject(__PRETTY_FUNCTION__), IHaveSubTasks(NULL), - binder(boost::bind(&BindColumns<typename T::value_type, Parents...>, _1, _2, p...)), + binder(boost::bind(&BindColumns<typename T::value_type>, _1, _2)), container(con) { } |