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

[10/21] mesos git commit: Add depedendent include to synchronized.hpp.

Add depedendent include to synchronized.hpp.

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


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

Branch: refs/heads/master
Commit: eb8f88db5c4e5f87159016267df6b9f771297eb1
Parents: 19b1960
Author: Joris Van Remoortere <jo...@gmail.com>
Authored: Sat Jun 13 05:54:22 2015 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Sun Jun 14 02:43:00 2015 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/3rdparty/stout/include/stout/synchronized.hpp | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/eb8f88db/3rdparty/libprocess/3rdparty/stout/include/stout/synchronized.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/synchronized.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/synchronized.hpp
index 9b11cbc..e40ec55 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/synchronized.hpp
+++ b/3rdparty/libprocess/3rdparty/stout/include/stout/synchronized.hpp
@@ -19,6 +19,8 @@
 #include <mutex>
 #include <type_traits>
 
+#include <glog/logging.h>
+
 #include <stout/preprocessor.hpp>
 
 // An RAII class for the 'synchronized(m)' macro.