$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r66644 - trunk/boost/spirit/home/support
From: hartmut.kaiser_at_[hidden]
Date: 2010-11-19 08:52:04
Author: hkaiser
Date: 2010-11-19 08:51:58 EST (Fri, 19 Nov 2010)
New Revision: 66644
URL: http://svn.boost.org/trac/boost/changeset/66644
Log:
Spirit: applied patch for adapt-adt issue
Text files modified: 
   trunk/boost/spirit/home/support/adapt_adt_attributes.hpp |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/spirit/home/support/adapt_adt_attributes.hpp
==============================================================================
--- trunk/boost/spirit/home/support/adapt_adt_attributes.hpp	(original)
+++ trunk/boost/spirit/home/support/adapt_adt_attributes.hpp	2010-11-19 08:51:58 EST (Fri, 19 Nov 2010)
@@ -30,7 +30,7 @@
     template <typename T, int N, bool Const>
     struct container_value<fusion::extension::adt_attribute_proxy<T, N, Const> >
       : container_value<
-            typename fusion::extension::access::adt_attribute_proxy<
+            typename fusion::extension::adt_attribute_proxy<
                 T, N, Const
             >::type
         >
@@ -63,7 +63,7 @@
     {};
 
     ///////////////////////////////////////////////////////////////////////////
-    template <typename T, int N, bool Const, typename Val>
+    template <typename T, int N, typename Val>
     struct assign_to_attribute_from_value<
         fusion::extension::adt_attribute_proxy<T, N, false>
       , Val>
@@ -107,7 +107,7 @@
             val = attr;
         }
         static void 
-        fail(fusion::extension::access::adt_attribute_proxy<T, N, false>&)
+        fail(fusion::extension::adt_attribute_proxy<T, N, false>&)
         {
         }
     };