further attempt at fixing Linux compile error

This commit is contained in:
dnotestein 2013-12-13 09:13:08 -05:00
parent 2d0bdb8e7a
commit d1d365beaf

View file

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