bugfix tuples::null_type and tuples::tuple<> iterators not comparing ok.

[SVN r39469]
This commit is contained in:
Joel de Guzman
2007-09-22 01:08:51 +00:00
parent 1f2087092f
commit dbd122cee3

View File

@ -90,17 +90,6 @@ namespace boost { namespace fusion
return type(iter.cons.get_tail());
}
};
template <typename I1, typename I2>
struct equal_to
: mpl::or_<
is_same<I1, I2>
, mpl::and_<
detail::boost_tuple_is_empty<typename I1::cons_type>
, detail::boost_tuple_is_empty<typename I2::cons_type>
>
>
{};
};
template <typename Null>