merge from trunk

[SVN r61043]
This commit is contained in:
Christopher Schmidt
2010-04-04 14:43:54 +00:00
388 changed files with 6164 additions and 2576 deletions

View File

@ -32,9 +32,8 @@ namespace boost { namespace fusion { namespace detail
static bool
call(I1 const& a, I2 const& b, mpl::false_)
{
return *a > *b
|| !(*b > *a)
&& call(fusion::next(a), fusion::next(b));
return *a > *b ||
(!(*b > *a) && call(fusion::next(a), fusion::next(b)));
}
template <typename I1, typename I2>