$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77678 - trunk/boost/container
From: igaztanaga_at_[hidden]
Date: 2012-03-31 16:52:07
Author: igaztanaga
Date: 2012-03-31 16:52:06 EDT (Sat, 31 Mar 2012)
New Revision: 77678
URL: http://svn.boost.org/trac/boost/changeset/77678
Log:
Added missing typename in template alias
Text files modified: 
   trunk/boost/container/allocator_traits.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/container/allocator_traits.hpp
==============================================================================
--- trunk/boost/container/allocator_traits.hpp	(original)
+++ trunk/boost/container/allocator_traits.hpp	2012-03-31 16:52:06 EDT (Sat, 31 Mar 2012)
@@ -167,7 +167,7 @@
 
       #if !defined(BOOST_NO_TEMPLATE_ALIASES)
          //C++11
-         template <typename T> using rebind_alloc  = boost::intrusive::detail::type_rebinder<Alloc, T>::type;
+         template <typename T> using rebind_alloc  = typename boost::intrusive::detail::type_rebinder<Alloc, T>::type;
          template <typename T> using rebind_traits = allocator_traits< rebind_alloc<T> >;
       #else    // #if !defined(BOOST_NO_TEMPLATE_ALIASES)
          //Some workaround for C++03 or C++11 compilers with no template aliases