mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-16 13:52:24 +02:00
fixing binary transform equal_to
[SVN r36823]
This commit is contained in:
@ -13,6 +13,7 @@
|
|||||||
namespace boost { namespace fusion {
|
namespace boost { namespace fusion {
|
||||||
|
|
||||||
struct transform_view_iterator_tag;
|
struct transform_view_iterator_tag;
|
||||||
|
struct transform_view_iterator2_tag;
|
||||||
|
|
||||||
namespace extension
|
namespace extension
|
||||||
{
|
{
|
||||||
@ -27,6 +28,15 @@ namespace boost { namespace fusion {
|
|||||||
: result_of::equal_to<typename It1::first_type, typename It2::first_type>
|
: result_of::equal_to<typename It1::first_type, typename It2::first_type>
|
||||||
{};
|
{};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct equal_to_impl<transform_view_iterator2_tag>
|
||||||
|
{
|
||||||
|
template<typename It1, typename It2>
|
||||||
|
struct apply
|
||||||
|
: result_of::equal_to<typename It1::first1_type, typename It2::first1_type>
|
||||||
|
{};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user