Update of /cvsroot/boost/boost/boost/fusion/sequence/view/transform_view/detail
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2259

Modified Files:
        equal_to_impl.hpp 
Log Message:
fixing binary transform equal_to

Index: equal_to_impl.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/fusion/sequence/view/transform_view/detail/equal_to_impl.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- equal_to_impl.hpp   28 Jan 2007 10:17:56 -0000      1.1
+++ equal_to_impl.hpp   28 Jan 2007 20:52:15 -0000      1.2
@@ -13,6 +13,7 @@
 namespace boost { namespace fusion {
 
     struct transform_view_iterator_tag;
+    struct transform_view_iterator2_tag;
 
     namespace extension
     {
@@ -27,6 +28,15 @@
                 : 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>
+            {};
+        };
     }
 }}
 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to