From 2d0bdb8e7ab43cbc037d1e54f8c105d9ef0b5f64 Mon Sep 17 00:00:00 2001 From: dnotestein Date: Thu, 12 Dec 2013 22:18:09 -0500 Subject: [PATCH] attempt to fix Linux compile error, needs to be verified on a Linux build machine --- 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 d8d157d..d2deb76 100644 --- a/include/fc/thread/future.hpp +++ b/include/fc/thread/future.hpp @@ -169,6 +169,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 ) {