Boost logo

Boost-Commit :

From: joel_at_[hidden]
Date: 2008-07-07 22:39:57


Author: djowel
Date: 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
New Revision: 47204
URL: http://svn.boost.org/trac/boost/changeset/47204

Log:
merge from trunk
Text files modified:
   branches/release/boost/fusion/adapted/array/detail/category_of_impl.hpp | 2 +-
   branches/release/boost/fusion/adapted/array/tag_of.hpp | 2 +-
   branches/release/boost/fusion/adapted/boost_tuple/tag_of.hpp | 4 ++--
   branches/release/boost/fusion/adapted/std_pair.hpp | 4 ++--
   branches/release/boost/fusion/adapted/std_pair/detail/category_of_impl.hpp | 2 +-
   branches/release/boost/fusion/adapted/std_pair/std_pair_iterator.hpp | 2 +-
   branches/release/boost/fusion/adapted/std_pair/tag_of.hpp | 2 +-
   branches/release/boost/fusion/adapted/struct/adapt_assoc_struct.hpp | 2 +-
   branches/release/boost/fusion/adapted/struct/adapt_struct.hpp | 2 +-
   branches/release/boost/fusion/adapted/struct/detail/category_of_impl.hpp | 2 +-
   branches/release/boost/fusion/adapted/struct/struct_iterator.hpp | 2 +-
   branches/release/boost/fusion/algorithm/transformation/transform.hpp | 2 +-
   branches/release/boost/fusion/algorithm/transformation/zip.hpp | 2 +-
   branches/release/boost/fusion/container/generation/deque_tie.hpp | 2 +-
   branches/release/boost/fusion/container/generation/list_tie.hpp | 2 +-
   branches/release/boost/fusion/container/generation/make_deque.hpp | 2 +-
   branches/release/boost/fusion/container/generation/make_list.hpp | 2 +-
   branches/release/boost/fusion/container/generation/make_map.hpp | 2 +-
   branches/release/boost/fusion/container/generation/make_set.hpp | 2 +-
   branches/release/boost/fusion/container/generation/make_vector.hpp | 2 +-
   branches/release/boost/fusion/container/generation/map_tie.hpp | 2 +-
   branches/release/boost/fusion/container/generation/vector_tie.hpp | 2 +-
   branches/release/boost/fusion/container/list/detail/end_impl.hpp | 2 +-
   branches/release/boost/fusion/functional/invocation/invoke.hpp | 2 +-
   branches/release/boost/fusion/functional/invocation/invoke_function_object.hpp | 2 +-
   branches/release/boost/fusion/functional/invocation/invoke_procedure.hpp | 2 +-
   branches/release/boost/fusion/support/tag_of.hpp | 2 +-
   branches/release/boost/fusion/view/transform_view/transform_view.hpp | 2 +-
   28 files changed, 30 insertions(+), 30 deletions(-)

Modified: branches/release/boost/fusion/adapted/array/detail/category_of_impl.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/array/detail/category_of_impl.hpp (original)
+++ branches/release/boost/fusion/adapted/array/detail/category_of_impl.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -8,7 +8,7 @@
 #if !defined(BOOST_FUSION_CATEGORY_OF_IMPL_27122005_1044)
 #define BOOST_FUSION_CATEGORY_OF_IMPL_27122005_1044
 
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion {
 

Modified: branches/release/boost/fusion/adapted/array/tag_of.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/array/tag_of.hpp (original)
+++ branches/release/boost/fusion/adapted/array/tag_of.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -25,7 +25,7 @@
     namespace traits
     {
         template<typename T, std::size_t N>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         struct tag_of<boost::array<T,N>, void >
 #else
         struct tag_of<boost::array<T,N> >

Modified: branches/release/boost/fusion/adapted/boost_tuple/tag_of.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/boost_tuple/tag_of.hpp (original)
+++ branches/release/boost/fusion/adapted/boost_tuple/tag_of.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -33,7 +33,7 @@
             class T0, class T1, class T2, class T3, class T4,
             class T5, class T6, class T7, class T8, class T9
>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         struct tag_of<tuples::tuple<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>, void >
 #else
         struct tag_of<tuples::tuple<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9> >
@@ -43,7 +43,7 @@
         };
 
         template <class Head, class Tail>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         struct tag_of<tuples::cons<Head, Tail>, void >
 #else
         struct tag_of<tuples::cons<Head, Tail> >

Modified: branches/release/boost/fusion/adapted/std_pair.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/std_pair.hpp (original)
+++ branches/release/boost/fusion/adapted/std_pair.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -11,7 +11,7 @@
 #include <boost/fusion/support/tag_of_fwd.hpp>
 #include <boost/fusion/adapted/struct.hpp>
 #include <boost/mpl/int.hpp>
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion
 {
@@ -20,7 +20,7 @@
     namespace traits
     {
         template <typename T1, typename T2>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         struct tag_of<std::pair<T1, T2>, void >
 #else
         struct tag_of<std::pair<T1, T2> >

Modified: branches/release/boost/fusion/adapted/std_pair/detail/category_of_impl.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/std_pair/detail/category_of_impl.hpp (original)
+++ branches/release/boost/fusion/adapted/std_pair/detail/category_of_impl.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -8,7 +8,7 @@
 #if !defined(BOOST_FUSION_CATEGORY_OF_IMPL_24122005_1731)
 #define BOOST_FUSION_CATEGORY_OF_IMPL_24122005_1731
 
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion {
 

Modified: branches/release/boost/fusion/adapted/std_pair/std_pair_iterator.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/std_pair/std_pair_iterator.hpp (original)
+++ branches/release/boost/fusion/adapted/std_pair/std_pair_iterator.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -14,7 +14,7 @@
 #include <boost/mpl/if.hpp>
 #include <boost/mpl/int.hpp>
 #include <boost/mpl/minus.hpp>
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion
 {

Modified: branches/release/boost/fusion/adapted/std_pair/tag_of.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/std_pair/tag_of.hpp (original)
+++ branches/release/boost/fusion/adapted/std_pair/tag_of.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -10,7 +10,7 @@
 
 #include <boost/fusion/support/tag_of_fwd.hpp>
 
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion {
 

Modified: branches/release/boost/fusion/adapted/struct/adapt_assoc_struct.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/struct/adapt_assoc_struct.hpp (original)
+++ branches/release/boost/fusion/adapted/struct/adapt_assoc_struct.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -31,7 +31,7 @@
 #include <boost/preprocessor/repetition/enum_params.hpp>
 #include <boost/preprocessor/cat.hpp>
 #include <boost/mpl/int.hpp>
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion { namespace extension {
     template<typename Struct, typename Key>

Modified: branches/release/boost/fusion/adapted/struct/adapt_struct.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/struct/adapt_struct.hpp (original)
+++ branches/release/boost/fusion/adapted/struct/adapt_struct.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -27,7 +27,7 @@
 #include <boost/preprocessor/repetition/enum_params.hpp>
 #include <boost/preprocessor/cat.hpp>
 #include <boost/mpl/int.hpp>
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 #define BOOST_FUSION_ADAPT_STRUCT(name, bseq) \
     BOOST_FUSION_ADAPT_STRUCT_I( \

Modified: branches/release/boost/fusion/adapted/struct/detail/category_of_impl.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/struct/detail/category_of_impl.hpp (original)
+++ branches/release/boost/fusion/adapted/struct/detail/category_of_impl.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -8,7 +8,7 @@
 #if !defined(BOOST_FUSION_CATEGORY_OF_IMPL_24122005_1731)
 #define BOOST_FUSION_CATEGORY_OF_IMPL_24122005_1731
 
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion
 {

Modified: branches/release/boost/fusion/adapted/struct/struct_iterator.hpp
==============================================================================
--- branches/release/boost/fusion/adapted/struct/struct_iterator.hpp (original)
+++ branches/release/boost/fusion/adapted/struct/struct_iterator.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -17,7 +17,7 @@
 #include <boost/mpl/if.hpp>
 #include <boost/mpl/int.hpp>
 #include <boost/mpl/minus.hpp>
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost { namespace fusion
 {

Modified: branches/release/boost/fusion/algorithm/transformation/transform.hpp
==============================================================================
--- branches/release/boost/fusion/algorithm/transformation/transform.hpp (original)
+++ branches/release/boost/fusion/algorithm/transformation/transform.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -22,7 +22,7 @@
         };
 
         template <typename Sequence, typename F>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         struct transform<Sequence, F, void_>
 #else
         struct transform<Sequence, F>

Modified: branches/release/boost/fusion/algorithm/transformation/zip.hpp
==============================================================================
--- branches/release/boost/fusion/algorithm/transformation/zip.hpp (original)
+++ branches/release/boost/fusion/algorithm/transformation/zip.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -54,7 +54,7 @@
     namespace result_of
     {
         template< BOOST_PP_ENUM_PARAMS(ZIP_ITERATION, typename T) >
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct zip< BOOST_PP_ENUM_PARAMS(ZIP_ITERATION, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(ZIP_ITERATION), FUSION_MAX_ZIP_SEQUENCES, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/generation/deque_tie.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/deque_tie.hpp (original)
+++ branches/release/boost/fusion/container/generation/deque_tie.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -54,7 +54,7 @@
     namespace result_of
     {
         template <BOOST_PP_ENUM_PARAMS(N, typename T)>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct deque_tie< BOOST_PP_ENUM_PARAMS(N, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_DEQUE_SIZE, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/generation/list_tie.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/list_tie.hpp (original)
+++ branches/release/boost/fusion/container/generation/list_tie.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -54,7 +54,7 @@
     namespace result_of
     {
         template <BOOST_PP_ENUM_PARAMS(N, typename T)>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct list_tie< BOOST_PP_ENUM_PARAMS(N, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_LIST_SIZE, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/generation/make_deque.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/make_deque.hpp (original)
+++ branches/release/boost/fusion/container/generation/make_deque.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -73,7 +73,7 @@
     namespace result_of
     {
         template <BOOST_PP_ENUM_PARAMS(N, typename T)>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct make_deque< BOOST_PP_ENUM_PARAMS(N, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_DEQUE_SIZE, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/generation/make_list.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/make_list.hpp (original)
+++ branches/release/boost/fusion/container/generation/make_list.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -66,7 +66,7 @@
     namespace result_of
     {
         template <BOOST_PP_ENUM_PARAMS(N, typename T)>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct make_list< BOOST_PP_ENUM_PARAMS(N, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_LIST_SIZE, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/generation/make_map.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/make_map.hpp (original)
+++ branches/release/boost/fusion/container/generation/make_map.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -78,7 +78,7 @@
             BOOST_PP_ENUM_PARAMS(N, typename K)
           , BOOST_PP_ENUM_PARAMS(N, typename D)
>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
          #define TEXT(z, n, text) , text
          struct make_map<BOOST_PP_ENUM_PARAMS(N, K), BOOST_PP_ENUM_PARAMS(N, D) BOOST_PP_REPEAT_FROM_TO(N, FUSION_MAX_VECTOR_SIZE, TEXT, void_) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_VECTOR_SIZE, TEXT, void_)>
          #undef TEXT

Modified: branches/release/boost/fusion/container/generation/make_set.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/make_set.hpp (original)
+++ branches/release/boost/fusion/container/generation/make_set.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -68,7 +68,7 @@
     namespace result_of
     {
         template <BOOST_PP_ENUM_PARAMS(N, typename T)>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct make_set< BOOST_PP_ENUM_PARAMS(N, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_SET_SIZE, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/generation/make_vector.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/make_vector.hpp (original)
+++ branches/release/boost/fusion/container/generation/make_vector.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -66,7 +66,7 @@
     namespace result_of
     {
         template <BOOST_PP_ENUM_PARAMS(N, typename T)>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct make_vector< BOOST_PP_ENUM_PARAMS(N, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_VECTOR_SIZE, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/generation/map_tie.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/map_tie.hpp (original)
+++ branches/release/boost/fusion/container/generation/map_tie.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -81,7 +81,7 @@
             BOOST_PP_ENUM_PARAMS(N, typename K)
           , BOOST_PP_ENUM_PARAMS(N, typename D)
>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
 
         struct map_tie<BOOST_PP_ENUM_PARAMS(N, K), BOOST_PP_ENUM_PARAMS(N, D) BOOST_PP_REPEAT_FROM_TO(N, FUSION_MAX_MAP_SIZE, TEXT, void_) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_MAP_SIZE, TEXT, void_)>

Modified: branches/release/boost/fusion/container/generation/vector_tie.hpp
==============================================================================
--- branches/release/boost/fusion/container/generation/vector_tie.hpp (original)
+++ branches/release/boost/fusion/container/generation/vector_tie.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -53,7 +53,7 @@
     namespace result_of
     {
         template <BOOST_PP_ENUM_PARAMS(N, typename T)>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
         #define TEXT(z, n, text) , text
         struct vector_tie< BOOST_PP_ENUM_PARAMS(N, T) BOOST_PP_REPEAT_FROM_TO(BOOST_PP_DEC(N), FUSION_MAX_VECTOR_SIZE, TEXT, void_) >
         #undef TEXT

Modified: branches/release/boost/fusion/container/list/detail/end_impl.hpp
==============================================================================
--- branches/release/boost/fusion/container/list/detail/end_impl.hpp (original)
+++ branches/release/boost/fusion/container/list/detail/end_impl.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -39,7 +39,7 @@
                 type;
     
                 static type
- call(Sequence& t)
+ call(Sequence&)
                 {
                     return type();
                 }

Modified: branches/release/boost/fusion/functional/invocation/invoke.hpp
==============================================================================
--- branches/release/boost/fusion/functional/invocation/invoke.hpp (original)
+++ branches/release/boost/fusion/functional/invocation/invoke.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -1,5 +1,5 @@
 /*=============================================================================
- Copyright (c) 2005-2006 Joao Abecasis
+ Copyright (c) 2005-2006 João Abecasis
     Copyright (c) 2006-2007 Tobias Schwinger
   
     Use modification and distribution are subject to the Boost Software

Modified: branches/release/boost/fusion/functional/invocation/invoke_function_object.hpp
==============================================================================
--- branches/release/boost/fusion/functional/invocation/invoke_function_object.hpp (original)
+++ branches/release/boost/fusion/functional/invocation/invoke_function_object.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -1,5 +1,5 @@
 /*=============================================================================
- Copyright (c) 2005-2006 Joao Abecasis
+ Copyright (c) 2005-2006 João Abecasis
     Copyright (c) 2006-2007 Tobias Schwinger
   
     Use modification and distribution are subject to the Boost Software

Modified: branches/release/boost/fusion/functional/invocation/invoke_procedure.hpp
==============================================================================
--- branches/release/boost/fusion/functional/invocation/invoke_procedure.hpp (original)
+++ branches/release/boost/fusion/functional/invocation/invoke_procedure.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -1,5 +1,5 @@
 /*=============================================================================
- Copyright (c) 2005-2006 Joao Abecasis
+ Copyright (c) 2005-2006 João Abecasis
     Copyright (c) 2006-2007 Tobias Schwinger
   
     Use modification and distribution are subject to the Boost Software

Modified: branches/release/boost/fusion/support/tag_of.hpp
==============================================================================
--- branches/release/boost/fusion/support/tag_of.hpp (original)
+++ branches/release/boost/fusion/support/tag_of.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -16,7 +16,7 @@
 #include <boost/mpl/assert.hpp>
 #include <boost/mpl/bool.hpp>
 #include <boost/mpl/if.hpp>
-#include <utility>
+#include <boost/config/no_tr1/utility.hpp>
 
 namespace boost
 {

Modified: branches/release/boost/fusion/view/transform_view/transform_view.hpp
==============================================================================
--- branches/release/boost/fusion/view/transform_view/transform_view.hpp (original)
+++ branches/release/boost/fusion/view/transform_view/transform_view.hpp 2008-07-07 22:39:55 EDT (Mon, 07 Jul 2008)
@@ -73,7 +73,7 @@
 
     // Unary Version
     template <typename Sequence, typename F>
-#if defined(BOOST_PARTIAL_SPECIALIZATION_EXPLICT_ARGS)
+#if defined(BOOST_NO_PARTIAL_SPECIALIZATION_IMPLICIT_DEFAULT_ARGS)
     struct transform_view<Sequence, F, void_> : sequence_base<transform_view<Sequence, F, void_> >
 #else
     struct transform_view<Sequence, F> : sequence_base<transform_view<Sequence, F> >


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk