Update of /cvsroot/boost/boost/boost/fusion/sequence/container/deque
In directory 
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32508/sequence/container/deque

Modified Files:
        deque.hpp 
Added Files:
        deque_fwd.hpp 
Log Message:
vc7.1 bugfix (ICE)

--- NEW FILE: deque_fwd.hpp ---
/*=============================================================================
    Copyright (c) 2005-2007 Joel de Guzman
    Copyright (c) 2005-2007 Dan Marsden

    Use, modification and distribution is subject to the Boost Software
    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
    http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#if !defined(FUSION_DEQUE_FORWARD_02092007_0749)
#define FUSION_DEQUE_FORWARD_02092007_0749

#include <boost/fusion/sequence/container/deque/limits.hpp>
#include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>

namespace boost { namespace fusion
{
    struct void_;

    template<
        BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
            FUSION_MAX_DEQUE_SIZE, typename T, void_)>
    struct deque;
}}

#endif

Index: deque.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/fusion/sequence/container/deque/deque.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- deque.hpp   19 Dec 2006 14:46:40 -0000      1.2
+++ deque.hpp   9 Feb 2007 12:16:38 -0000       1.3
@@ -22,6 +22,7 @@
 #include <boost/type_traits/add_reference.hpp>
 #include <boost/type_traits/add_const.hpp>
 
+#include <boost/fusion/sequence/container/deque/deque_fwd.hpp>
 #include <boost/fusion/sequence/container/deque/detail/value_at_impl.hpp>
 #include <boost/fusion/sequence/container/deque/detail/at_impl.hpp>
 #include <boost/fusion/sequence/container/deque/detail/begin_impl.hpp>
@@ -35,12 +36,9 @@
     struct deque_tag;
     struct void_;
 
-    template<BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(FUSION_MAX_DEQUE_SIZE, 
typename T, void_)>
-    struct deque;
-
     template<BOOST_PP_ENUM_PARAMS(FUSION_MAX_DEQUE_SIZE, typename T)>
     struct deque
-        : 
+        :
         detail::deque_keyed_values<BOOST_PP_ENUM_PARAMS(FUSION_MAX_DEQUE_SIZE, 
T)>::type,
         sequence_base<deque<BOOST_PP_ENUM_PARAMS(FUSION_MAX_DEQUE_SIZE, T)> >
     {
@@ -54,7 +52,7 @@
 
 #include <boost/fusion/sequence/container/deque/detail/deque_forward_ctor.hpp>
 
-        deque() 
+        deque()
             {}
 
         explicit deque(typename add_reference<typename 
add_const<T0>::type>::type t0)


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to