$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: chochlik_at_[hidden]
Date: 2008-06-19 03:51:36
Author: matus.chochlik
Date: 2008-06-19 03:51:36 EDT (Thu, 19 Jun 2008)
New Revision: 46501
URL: http://svn.boost.org/trac/boost/changeset/46501
Log:
minor fix of a bug fix ;)
Text files modified: 
   sandbox/mirror/boost/mirror/meta_attributes.hpp |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: sandbox/mirror/boost/mirror/meta_attributes.hpp
==============================================================================
--- sandbox/mirror/boost/mirror/meta_attributes.hpp	(original)
+++ sandbox/mirror/boost/mirror/meta_attributes.hpp	2008-06-19 03:51:36 EDT (Thu, 19 Jun 2008)
@@ -437,7 +437,7 @@
                         };
 
                         template <int I, class Inherited>
-			struct result_of_get_attrib_traits
+			struct result_of_get_traits
                         {
                                 // get the right meta-class
                                 typedef typename mpl::eval_if<
@@ -463,7 +463,7 @@
                                 // the traits of the i-th attribute
                                 typedef typename detail::type type;
 
-			}; // struct result_of_get_attrib_traits
+			}; // struct result_of_get_traits
 
                 }; // struct detail
                 
@@ -564,7 +564,7 @@
                 /** The attribute traits getter
                  */
                 template <int I>
-		static typename detail::result_of_get_attrib_traits<
+		static typename detail:: template result_of_get_traits<
                         I,
                         typename result_of_is_inherited<I>::type
 		>::type get_traits(mpl::int_<I>);