Update of /cvsroot/boost/boost/boost/fusion/sequence/intrinsic
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7756/sequence/intrinsic

Modified Files:
        size.hpp 
Log Message:
fixing issues with fusion zip_view size on intel

Index: size.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/fusion/sequence/intrinsic/size.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- size.hpp    2 Mar 2007 10:44:11 -0000       1.6
+++ size.hpp    8 Jul 2007 14:26:01 -0000       1.7
@@ -53,8 +53,13 @@
         template <typename Sequence>
         struct size
             : extension::size_impl<typename detail::tag_of<Sequence>::type>::
-                template apply<Sequence>
-        {};
+        template apply<Sequence>
+
+        {
+            typedef typename extension::size_impl<typename 
detail::tag_of<Sequence>::type>::
+            template apply<Sequence>::type size_application;
+            BOOST_STATIC_CONSTANT(int, value = size_application::value);
+        };
     }
 
     template <typename Sequence>


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to