27 Sep
2011
27 Sep
'11
10 p.m.
On Wed, 21 Sep 2011 16:59:06 +0200, Krzysztof Żelechowski
The expression (cout << make_pair (0, 1)) gives me an error. Does Boost offer me a way to print a (rvalue) pair, as within an expression?
If you can replace std::pair with boost::tuple, you could write (cout << make_tuple (0, 1)). Boris