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 2015/09/04 08:56:47 UTC

mesos git commit: Corrected include order in master.hpp

Repository: mesos
Updated Branches:
  refs/heads/master 99b2202a0 -> ff9c9769a


Corrected include order in master.hpp

See summary.

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


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

Branch: refs/heads/master
Commit: ff9c9769a9638597981a1a6a2fe1e3dcf1ad25bc
Parents: 99b2202
Author: Alexander Rukletsov <ru...@gmail.com>
Authored: Thu Sep 3 23:54:27 2015 -0700
Committer: Joris Van Remoortere <jo...@gmail.com>
Committed: Thu Sep 3 23:54:27 2015 -0700

----------------------------------------------------------------------
 src/master/master.hpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/ff9c9769/src/master/master.hpp
----------------------------------------------------------------------
diff --git a/src/master/master.hpp b/src/master/master.hpp
index 594dd25..e133185 100644
--- a/src/master/master.hpp
+++ b/src/master/master.hpp
@@ -28,16 +28,18 @@
 
 #include <boost/circular_buffer.hpp>
 
-#include <mesos/maintenance/maintenance.hpp>
 #include <mesos/mesos.hpp>
 #include <mesos/resources.hpp>
-#include <mesos/scheduler/scheduler.hpp>
 #include <mesos/type_utils.hpp>
 
+#include <mesos/maintenance/maintenance.hpp>
+
 #include <mesos/master/allocator.hpp>
 
 #include <mesos/module/authenticator.hpp>
 
+#include <mesos/scheduler/scheduler.hpp>
+
 #include <process/limiter.hpp>
 #include <process/http.hpp>
 #include <process/owned.hpp>