attempt to fix Linux compile error, needs to be verified on a Linux build machine
This commit is contained in:
parent
8e47816c4e
commit
2d0bdb8e7a
1 changed files with 1 additions and 0 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue