Merging minor tested bugfixes from trunk.

[SVN r77592]
This commit is contained in:
Emil Dotchevski
2012-03-27 19:31:48 +00:00
parent a73deaa3f3
commit b3b930b7f5
5 changed files with 58 additions and 4 deletions

View File

@ -18,6 +18,30 @@
namespace
boost
{
template <
class E >
inline
E const &
operator<<(
E const & x,
tuple< > const & v )
{
return x;
}
template <
class E,
class Tag1,class T1 >
inline
E const &
operator<<(
E const & x,
tuple<
error_info<Tag1,T1> > const & v )
{
return x << v.template get<0>();
}
template <
class E,
class Tag1,class T1,