You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2016/08/23 13:16:32 UTC

mesos git commit: Added some missing includes.

Repository: mesos
Updated Branches:
  refs/heads/master 0a84a58af -> 6bb9c9bf3


Added some missing includes.

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


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

Branch: refs/heads/master
Commit: 6bb9c9bf32b01c10c924d9a20a59526446600122
Parents: 0a84a58
Author: Benjamin Bannier <be...@mesosphere.io>
Authored: Tue Aug 23 14:56:30 2016 +0200
Committer: Till Toenshoff <to...@me.com>
Committed: Tue Aug 23 14:56:30 2016 +0200

----------------------------------------------------------------------
 3rdparty/stout/include/stout/os/posix/su.hpp | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/6bb9c9bf/3rdparty/stout/include/stout/os/posix/su.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/stout/include/stout/os/posix/su.hpp b/3rdparty/stout/include/stout/os/posix/su.hpp
index ad72029..c3ce87e 100644
--- a/3rdparty/stout/include/stout/os/posix/su.hpp
+++ b/3rdparty/stout/include/stout/os/posix/su.hpp
@@ -19,13 +19,19 @@
 
 #include <string>
 
+#include <errno.h>
 #include <grp.h>
+#include <limits.h>
 #include <pwd.h>
+#include <unistd.h>
 
 #include <sys/syscall.h>
 
 #include <stout/error.hpp>
+#include <stout/none.hpp>
 #include <stout/nothing.hpp>
+#include <stout/option.hpp>
+#include <stout/result.hpp>
 #include <stout/try.hpp>
 #include <stout/unreachable.hpp>