Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r59578 - in trunk/boost/fusion/adapted/boost_array: . detail
From: mr.chr.schmidt_at_[hidden]
Date: 2010-02-07 14:12:27


Author: cschmidt
Date: 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
New Revision: 59578
URL: http://svn.boost.org/trac/boost/changeset/59578

Log:
adapt plain old array types (3)
Text files modified:
   trunk/boost/fusion/adapted/boost_array/detail/at_impl.hpp | 4 ++--
   trunk/boost/fusion/adapted/boost_array/detail/begin_impl.hpp | 6 +++---
   trunk/boost/fusion/adapted/boost_array/detail/category_of_impl.hpp | 4 ++--
   trunk/boost/fusion/adapted/boost_array/detail/end_impl.hpp | 6 +++---
   trunk/boost/fusion/adapted/boost_array/detail/is_sequence_impl.hpp | 4 ++--
   trunk/boost/fusion/adapted/boost_array/detail/is_view_impl.hpp | 4 ++--
   trunk/boost/fusion/adapted/boost_array/detail/size_impl.hpp | 4 ++--
   trunk/boost/fusion/adapted/boost_array/detail/value_at_impl.hpp | 4 ++--
   trunk/boost/fusion/adapted/boost_array/tag_of.hpp | 4 ++--
   9 files changed, 20 insertions(+), 20 deletions(-)

Modified: trunk/boost/fusion/adapted/boost_array/detail/at_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/at_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/at_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -14,7 +14,7 @@
 
 namespace boost { namespace fusion {
     
- struct array_tag;
+ struct boost_array_tag;
 
     namespace extension
     {
@@ -22,7 +22,7 @@
         struct at_impl;
 
         template<>
- struct at_impl<array_tag>
+ struct at_impl<boost_array_tag>
         {
             template<typename Sequence, typename N>
             struct apply

Modified: trunk/boost/fusion/adapted/boost_array/detail/begin_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/begin_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/begin_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -8,11 +8,11 @@
 #if !defined(BOOST_FUSION_BEGIN_IMPL_27122005_1117)
 #define BOOST_FUSION_BEGIN_IMPL_27122005_1117
 
-#include <boost/fusion/adapted/array/array_iterator.hpp>
+#include <boost/fusion/adapted/boost_array/array_iterator.hpp>
 
 namespace boost { namespace fusion {
 
- struct array_tag;
+ struct boost_array_tag;
 
     namespace extension
     {
@@ -20,7 +20,7 @@
         struct begin_impl;
 
         template <>
- struct begin_impl<array_tag>
+ struct begin_impl<boost_array_tag>
         {
             template <typename Sequence>
             struct apply

Modified: trunk/boost/fusion/adapted/boost_array/detail/category_of_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/category_of_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/category_of_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -12,7 +12,7 @@
 
 namespace boost { namespace fusion {
 
- struct array_tag;
+ struct boost_array_tag;
     struct random_access_traversal_tag;
 
     namespace extension
@@ -21,7 +21,7 @@
         struct category_of_impl;
 
         template<>
- struct category_of_impl<array_tag>
+ struct category_of_impl<boost_array_tag>
         {
             template<typename T>
             struct apply

Modified: trunk/boost/fusion/adapted/boost_array/detail/end_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/end_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/end_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -8,11 +8,11 @@
 #if !defined(BOOST_FUSION_END_IMPL_27122005_1120)
 #define BOOST_FUSION_END_IMPL_27122005_1120
 
-#include <boost/fusion/adapted/array/array_iterator.hpp>
+#include <boost/fusion/adapted/boost_array/array_iterator.hpp>
 
 namespace boost { namespace fusion {
 
- struct array_tag;
+ struct boost_array_tag;
 
     namespace extension
     {
@@ -20,7 +20,7 @@
         struct end_impl;
 
         template <>
- struct end_impl<array_tag>
+ struct end_impl<boost_array_tag>
         {
             template <typename Sequence>
             struct apply

Modified: trunk/boost/fusion/adapted/boost_array/detail/is_sequence_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/is_sequence_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/is_sequence_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -12,7 +12,7 @@
 
 namespace boost { namespace fusion {
 
- struct array_tag;
+ struct boost_array_tag;
 
     namespace extension
     {
@@ -20,7 +20,7 @@
         struct is_sequence_impl;
 
         template<>
- struct is_sequence_impl<array_tag>
+ struct is_sequence_impl<boost_array_tag>
         {
             template<typename Sequence>
             struct apply : mpl::true_ {};

Modified: trunk/boost/fusion/adapted/boost_array/detail/is_view_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/is_view_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/is_view_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -12,7 +12,7 @@
 
 namespace boost { namespace fusion
 {
- struct array_tag;
+ struct boost_array_tag;
 
     namespace extension
     {
@@ -20,7 +20,7 @@
         struct is_view_impl;
 
         template<>
- struct is_view_impl<array_tag>
+ struct is_view_impl<boost_array_tag>
         {
             template<typename T>
             struct apply : mpl::false_

Modified: trunk/boost/fusion/adapted/boost_array/detail/size_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/size_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/size_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -10,7 +10,7 @@
 
 namespace boost { namespace fusion {
 
- struct array_tag;
+ struct boost_array_tag;
 
     namespace extension
     {
@@ -18,7 +18,7 @@
         struct size_impl;
 
         template<>
- struct size_impl<array_tag>
+ struct size_impl<boost_array_tag>
         {
             template<typename Sequence>
             struct apply : mpl::int_<Sequence::static_size> {};

Modified: trunk/boost/fusion/adapted/boost_array/detail/value_at_impl.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/detail/value_at_impl.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/detail/value_at_impl.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -10,7 +10,7 @@
 
 namespace boost { namespace fusion {
     
- struct array_tag;
+ struct boost_array_tag;
 
     namespace extension
     {
@@ -18,7 +18,7 @@
         struct value_at_impl;
 
         template <>
- struct value_at_impl<array_tag>
+ struct value_at_impl<boost_array_tag>
         {
             template <typename Sequence, typename N>
             struct apply

Modified: trunk/boost/fusion/adapted/boost_array/tag_of.hpp
==============================================================================
--- trunk/boost/fusion/adapted/boost_array/tag_of.hpp (original)
+++ trunk/boost/fusion/adapted/boost_array/tag_of.hpp 2010-02-07 14:12:26 EST (Sun, 07 Feb 2010)
@@ -20,7 +20,7 @@
 
 namespace boost { namespace fusion
 {
- struct array_tag;
+ struct boost_array_tag;
     struct fusion_sequence_tag;
 
     namespace traits
@@ -32,7 +32,7 @@
         struct tag_of<boost::array<T,N> >
 #endif
         {
- typedef array_tag type;
+ typedef boost_array_tag type;
         };
     }
 }}


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