further attempt at fixing Linux compile error
This commit is contained in:
parent
2d0bdb8e7a
commit
d1d365beaf
1 changed files with 1 additions and 0 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue