-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/18360/
-----------------------------------------------------------
(Updated Feb. 24, 2014, 6:48 p.m.)
Review request for mesos, Adam B, Benjamin Hindman, Ben Mahler, Niklas Nielsen,
and Vinod Kone.
Changes
-------
Added include guard and license note.
Bugs: MESOS-1026
https://issues.apache.org/jira/browse/MESOS-1026
Repository: mesos-git
Description
-------
Namespace pull-in of std::tuple or boost::tuples::tuple, depending on the
availability of C+11. The results are part of a tuples namespace of stout.
Example usage including fully qualified namespaces:
#include <stout/tuple.hpp>
tuples::tuple<int, bool> tuple = tuples::make_tuple(42, true);
int foo = tuples::get<0>(tuple);
Diffs (updated)
-----
3rdparty/libprocess/3rdparty/stout/Makefile.am 5d5a760
3rdparty/libprocess/3rdparty/stout/include/stout/tuple.hpp PRE-CREATION
Diff: https://reviews.apache.org/r/18360/diff/
Testing
-------
make check (clang c++11, gcc), functional testing
Thanks,
TILL TOENSHOFF