You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by jo...@apache.org on 2016/03/10 20:43:16 UTC

mesos git commit: Made `timer.hpp` header self-contained.

Repository: mesos
Updated Branches:
  refs/heads/master 6fa91fe1f -> 7f2f1ab58


Made `timer.hpp` header self-contained.

The `timer.hpp` was missing an include for `pid.hpp` required for
accessing `process::UPID`.

Review: https://reviews.apache.org/r/44463/


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

Branch: refs/heads/master
Commit: 7f2f1ab581e749ac5539f028cfbcf8bd62b4ee03
Parents: 6fa91fe
Author: Anand Mazumdar <ma...@gmail.com>
Authored: Thu Mar 10 14:41:33 2016 -0500
Committer: Joris Van Remoortere <jo...@gmail.com>
Committed: Thu Mar 10 14:42:34 2016 -0500

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


http://git-wip-us.apache.org/repos/asf/mesos/blob/7f2f1ab5/3rdparty/libprocess/include/process/timer.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/timer.hpp b/3rdparty/libprocess/include/process/timer.hpp
index 6bf7216..d60b9ae 100644
--- a/3rdparty/libprocess/include/process/timer.hpp
+++ b/3rdparty/libprocess/include/process/timer.hpp
@@ -16,6 +16,7 @@
 #include <stdint.h>
 #include <stdlib.h> // For abort.
 
+#include <process/pid.hpp>
 #include <process/timeout.hpp>
 
 #include <stout/duration.hpp>