You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by tn...@apache.org on 2016/01/18 23:51:43 UTC

mesos git commit: Revert "Added reverse_foreach in libprocess."

Repository: mesos
Updated Branches:
  refs/heads/master f51fa7fcb -> bd6cadc9b


Revert "Added reverse_foreach in libprocess."

This reverts commit f51fa7fcb305986d237b408aeb1d456d31b4d635.


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

Branch: refs/heads/master
Commit: bd6cadc9b0f2f919e80c488e4f96dab34de61658
Parents: f51fa7f
Author: Timothy Chen <tn...@apache.org>
Authored: Mon Jan 18 14:51:32 2016 -0800
Committer: Timothy Chen <tn...@apache.org>
Committed: Mon Jan 18 14:51:32 2016 -0800

----------------------------------------------------------------------
 3rdparty/libprocess/3rdparty/stout/include/stout/foreach.hpp | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/bd6cadc9/3rdparty/libprocess/3rdparty/stout/include/stout/foreach.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/foreach.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/foreach.hpp
index eebb463..7fb0044 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/foreach.hpp
+++ b/3rdparty/libprocess/3rdparty/stout/include/stout/foreach.hpp
@@ -52,15 +52,10 @@ swallow_assign const ignore = swallow_assign();
 #define foreach BOOST_FOREACH
 #define foreachpair BOOST_FOREACH_PAIR
 
-#define reverse_foreach BOOST_REVERSE_FOREACH
-
 #define foreachkey(VAR, COL)                    \
   foreachpair (VAR, __foreach__::ignore, COL)
 
 #define foreachvalue(VAR, COL)                  \
   foreachpair (__foreach__::ignore, VAR, COL)
 
-// TODO(tnachen): Add reverse_foreachkey, reverse_foreachvalue and
-// reverse_foreachpair.
-
 #endif // __STOUT_FOREACH_HPP__