$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r78452 - sandbox/type_erasure/boost/type_erasure/detail
From: steven_at_[hidden]
Date: 2012-05-13 10:39:12
Author: steven_watanabe
Date: 2012-05-13 10:39:11 EDT (Sun, 13 May 2012)
New Revision: 78452
URL: http://svn.boost.org/trac/boost/changeset/78452
Log:
Switch the key and value.
Text files modified: 
   sandbox/type_erasure/boost/type_erasure/detail/normalize.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/type_erasure/boost/type_erasure/detail/normalize.hpp
==============================================================================
--- sandbox/type_erasure/boost/type_erasure/detail/normalize.hpp	(original)
+++ sandbox/type_erasure/boost/type_erasure/detail/normalize.hpp	2012-05-13 10:39:11 EDT (Sun, 13 May 2012)
@@ -71,7 +71,7 @@
 template<class T, class U>
 struct select_pair<T, ::boost::type_erasure::deduced<U> >
 {
-    typedef ::boost::mpl::pair<T, ::boost::type_erasure::deduced<U> > type;
+    typedef ::boost::mpl::pair< ::boost::type_erasure::deduced<U>, T> type;
 };
 
 template<class T, class U>