Repository: mesos Updated Branches: refs/heads/master b93249612 -> 30113086a
C++11 lambda style updates for stout. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/944d501a Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/944d501a Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/944d501a Branch: refs/heads/master Commit: 944d501a1f07264ec258ffaa1eb419deed96d275 Parents: c36ace1 Author: Benjamin Hindman <[email protected]> Authored: Sat May 2 10:17:58 2015 -0700 Committer: Benjamin Hindman <[email protected]> Committed: Sat May 2 10:28:18 2015 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/3rdparty/stout/include/stout/os/pstree.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/944d501a/3rdparty/libprocess/3rdparty/stout/include/stout/os/pstree.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/os/pstree.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/os/pstree.hpp index e7fe077..9426895 100644 --- a/3rdparty/libprocess/3rdparty/stout/include/stout/os/pstree.hpp +++ b/3rdparty/libprocess/3rdparty/stout/include/stout/os/pstree.hpp @@ -107,9 +107,9 @@ inline Try<std::list<ProcessTree> > pstrees( // Now see if any of the existing process trees are actually // contained within the process tree we just created and only - // includ the disjoint process trees. + // include the disjoint process trees. // C++11: - // trees = trees.filter([] (const ProcessTree& t) { + // trees = trees.filter([](const ProcessTree& t) { // return tree.get().contains(t); // }); std::list<ProcessTree> trees_ = trees;
