Updated Branches:
  refs/heads/master 3c61c6ff6 -> 137f4e86e

Made Promise have a virtual destructor.

See summary.

From: Benjamin Hindman <b...@berkeley.edu>
Review: https://reviews.apache.org/r/14382


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a8310ad8
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/a8310ad8
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/a8310ad8

Branch: refs/heads/master
Commit: a8310ad813d96168ae300ece72c76a14cbfaf73b
Parents: 3c61c6f
Author: Benjamin Mahler <bmah...@twitter.com>
Authored: Tue Oct 29 11:51:52 2013 -0700
Committer: Benjamin Mahler <bmah...@twitter.com>
Committed: Tue Oct 29 11:51:52 2013 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/future.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/a8310ad8/3rdparty/libprocess/include/process/future.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/future.hpp 
b/3rdparty/libprocess/include/process/future.hpp
index daf4b92..e03f8c9 100644
--- a/3rdparty/libprocess/include/process/future.hpp
+++ b/3rdparty/libprocess/include/process/future.hpp
@@ -253,7 +253,7 @@ class Promise
 public:
   Promise();
   Promise(const T& t);
-  ~Promise();
+  virtual ~Promise();
 
   bool set(const T& _t);
   bool set(const Future<T>& future); // Alias for associate.

Reply via email to