Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
162 views

boost::ref and boost::asio completion handlers, pass-by-reference

m_io_service.post(boost::ref(i)); I have this call in a section of code, the underlying type i is definetly a callable (because removing the boost::ref leads to pass by value, which works fine), ...
0
votes
1answer
67 views

How to use boost::ref with Boost.Parameter library when passing arguments?

I use the Boost.Parameter library for providing named parameters to a constructor. BOOST_PARAMETER_NAME(windowFunction) namespace detail { struct ClassAImpl { template <class ...