Boost logo

Boost Users :

Subject: [Boost-users] boost::bind with template
From: Kraus Philipp (philipp.kraus_at_[hidden])
Date: 2010-08-15 04:39:35


Hi,

I would like to create a thread group for my "worker objects" like:

std::vector< worker<T,D> > l_worker;
boost::thread_group l_threads;
for(std::size_t i=0; i < p_threads; ++i) {
        l_worker.push_back( worker<T,D>(p_iteration, p_stepsize,
m_derivation, m_optimize, m_static, p_batch) );
          
l_threads.create_thread( boost::bind( &worker<T,D>::optimize ),
l_worker[i] ); (*)
}

I get a compiler error at (*) on boost/bind/bind.hpp:
In instantiation of
'boost::_bi::result_traits<boost::_bi::unspecified, void
(worker<double, 2ul>::*)()>':
error: 'void (worker<double, 2ul>::*)()' is not a class, struct, or
union type

boost/bind/bind_template.hpp:15: instantiated from
'boost::_bi::bind_t<boost::_bi::unspecified, void (worker<double,
2ul>::*)(), boost::_bi::list0>'

The variables T is a typename and D is std::size_t > 0

How can I bind my template object (<doube, 2>) to the create_thread
methode?

Thanks

Phil



Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net