From d1d365beaf9d2a00752878b9e392792f5933c0f7 Mon Sep 17 00:00:00 2001 From: dnotestein Date: Fri, 13 Dec 2013 09:13:08 -0500 Subject: [PATCH] further attempt at fixing Linux compile error --- include/fc/thread/future.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/fc/thread/future.hpp b/include/fc/thread/future.hpp index d2deb76..cf57a24 100644 --- a/include/fc/thread/future.hpp +++ b/include/fc/thread/future.hpp @@ -226,6 +226,7 @@ namespace fc { public: future( const fc::shared_ptr>& p ):m_prom(p){} future( fc::shared_ptr>&& p ):m_prom(fc::move(p)){} + future(const future& f ) : m_prom(f.m_prom){} future(){} future& operator=(future&& f ) {