You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2015/06/11 20:45:42 UTC

mesos git commit: Fixed the include ordering in zookeeper.cpp.

Repository: mesos
Updated Branches:
  refs/heads/master a89ba3f19 -> 02c0dbfb6


Fixed the include ordering in zookeeper.cpp.


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

Branch: refs/heads/master
Commit: 02c0dbfb68756121498bb0b51c8d68620b38707e
Parents: a89ba3f
Author: Jie Yu <yu...@gmail.com>
Authored: Thu Jun 11 11:45:34 2015 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Thu Jun 11 11:45:34 2015 -0700

----------------------------------------------------------------------
 src/zookeeper/zookeeper.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/02c0dbfb/src/zookeeper/zookeeper.cpp
----------------------------------------------------------------------
diff --git a/src/zookeeper/zookeeper.cpp b/src/zookeeper/zookeeper.cpp
index 11ace5a..fe862aa 100644
--- a/src/zookeeper/zookeeper.cpp
+++ b/src/zookeeper/zookeeper.cpp
@@ -18,12 +18,12 @@
 
 #include <stdint.h>
 
-#include <glog/logging.h>
-
 #include <iostream>
 #include <map>
 #include <tuple>
 
+#include <glog/logging.h>
+
 #include <process/defer.hpp>
 #include <process/dispatch.hpp>
 #include <process/id.hpp>