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 2013/12/02 18:37:36 UTC

git commit: Added missing include of 'algorithm'.

Updated Branches:
  refs/heads/master e427fae0c -> 63e8a342e


Added missing include of 'algorithm'.


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

Branch: refs/heads/master
Commit: 63e8a342ee952326e9bc9a927cca60ffade7b057
Parents: e427fae
Author: Benjamin Hindman <be...@gmail.com>
Authored: Mon Dec 2 09:37:24 2013 -0800
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Mon Dec 2 09:37:24 2013 -0800

----------------------------------------------------------------------
 3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/63e8a342/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp
index 789eeb6..f5caa99 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp
+++ b/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp
@@ -1,3 +1,4 @@
+#include <algorithm> // For std::set_intersection.
 #include <set>
 #include <vector>