attempt to fix Linux compile error, needs to be verified on a Linux build machine

This commit is contained in:
dnotestein 2013-12-12 22:18:09 -05:00
parent 8e47816c4e
commit 2d0bdb8e7a

View file

@ -169,6 +169,7 @@ namespace fc {
public:
future( const fc::shared_ptr<promise<T>>& p ):m_prom(p){}
future( fc::shared_ptr<promise<T>>&& p ):m_prom(fc::move(p)){}
future(const future<T>& f ) : m_prom(f.m_prom){}
future(){}
future& operator=(future<T>&& f ) {