You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2015/09/23 20:15:15 UTC

mesos git commit: Fixed order for header includes in slave.hpp.

Repository: mesos
Updated Branches:
  refs/heads/master 4f9dd54ca -> bc0d62e10


Fixed order for header includes in slave.hpp.

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


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

Branch: refs/heads/master
Commit: bc0d62e10330c5fc8b8ff6d44d57ed1217fda714
Parents: 4f9dd54
Author: Anand Mazumdar <ma...@gmail.com>
Authored: Wed Sep 23 11:14:06 2015 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Wed Sep 23 11:14:06 2015 -0700

----------------------------------------------------------------------
 src/slave/slave.hpp | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/bc0d62e1/src/slave/slave.hpp
----------------------------------------------------------------------
diff --git a/src/slave/slave.hpp b/src/slave/slave.hpp
index 8fcd2d9..5e3e13a 100644
--- a/src/slave/slave.hpp
+++ b/src/slave/slave.hpp
@@ -52,8 +52,15 @@
 #include <stout/path.hpp>
 #include <stout/uuid.hpp>
 
+#include "common/attributes.hpp"
+#include "common/protobuf_utils.hpp"
+
+#include "files/files.hpp"
+
 #include "master/detector.hpp"
 
+#include "messages/messages.hpp"
+
 #include "slave/constants.hpp"
 #include "slave/containerizer/containerizer.hpp"
 #include "slave/flags.hpp"
@@ -63,12 +70,6 @@
 #include "slave/paths.hpp"
 #include "slave/state.hpp"
 
-#include "common/protobuf_utils.hpp"
-
-#include "files/files.hpp"
-
-#include "messages/messages.hpp"
-
 namespace mesos {
 namespace internal {