0
votes
1answer
168 views

boost unable to move a scoped_lock with gcc

The following compiles under VS2010 (Express) but not gcc (4.6.2 here). Lockable.h: #include <boost/thread/mutex.hpp> #include <boost/interprocess/sync/scoped_lock.hpp> ...
10
votes
2answers
614 views

Is it possible to move a boost::optional?

I've been trying to define a defaulted move constructor in a class with a boost::optional member variable. #include <boost/optional.hpp> #include <utility> #include <vector> struct ...
8
votes
1answer
407 views

Which Boost Libraries take advantage of Move Semantics

Rvalue references and Move semantics are a major C++11 feature that can significantly speed up code by reducing unnecessary copies. The STL has been updated to use this new feature when a c++11/0x ...
3
votes
1answer
2k views

C++ - Boost.Promise, Boost.Unique_Future and Move Semantics

I'm following some tutorials by Bartosz Milewski here which I find very useful. However, as the author uses the just::thread implementation of the C++11 threading standard (which I don't yet have), I ...