Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71671 - in trunk: boost/multi_index libs/multi_index/doc
From: joaquin_at_[hidden]
Date: 2011-05-02 11:06:02


Author: joaquin
Date: 2011-05-02 11:06:01 EDT (Mon, 02 May 2011)
New Revision: 71671
URL: http://svn.boost.org/trac/boost/changeset/71671

Log:
fixed problem reported at http://lists.boost.org/boost-users/2011/05/68022.php
Text files modified:
   trunk/boost/multi_index/composite_key.hpp | 6 +++---
   trunk/libs/multi_index/doc/release_notes.html | 16 ++++++++++++++--
   2 files changed, 17 insertions(+), 5 deletions(-)

Modified: trunk/boost/multi_index/composite_key.hpp
==============================================================================
--- trunk/boost/multi_index/composite_key.hpp (original)
+++ trunk/boost/multi_index/composite_key.hpp 2011-05-02 11:06:01 EDT (Mon, 02 May 2011)
@@ -1,4 +1,4 @@
-/* Copyright 2003-2008 Joaquin M Lopez Munoz.
+/* Copyright 2003-2011 Joaquin M Lopez Munoz.
  * Distributed under the Boost Software License, Version 1.0.
  * (See accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)
@@ -998,7 +998,7 @@
     const composite_key_result<CompositeKey>& x,
     const Value& y)const
   {
- return operator()(x,make_tuple(cref(y)));
+ return operator()(x,boost::make_tuple(boost::cref(y)));
   }
 #endif
 
@@ -1033,7 +1033,7 @@
     const Value& x,
     const composite_key_result<CompositeKey>& y)const
   {
- return operator()(make_tuple(cref(x)),y);
+ return operator()(boost::make_tuple(boost::cref(x)),y);
   }
 #endif
 

Modified: trunk/libs/multi_index/doc/release_notes.html
==============================================================================
--- trunk/libs/multi_index/doc/release_notes.html (original)
+++ trunk/libs/multi_index/doc/release_notes.html 2011-05-02 11:06:01 EDT (Mon, 02 May 2011)
@@ -31,6 +31,7 @@
 <h2>Contents</h2>
 
 <ul>
+ <li>Boost 1.47 release</li>
   <li>Boost 1.44 release</li>
   <li>Boost 1.43 release</li>
   <li>Boost 1.42 release</li>
@@ -44,6 +45,17 @@
   <li>Boost 1.33 release</li>
 </ul>
 
+<h2><a name="boost_1_47">Boost 1.47 release</a></h2>
+
+<p>
+<ul>
+ <li>Fixed an ADL problem in
+ composite_key_compare
+ related with Boost.Ref.
+ </li>
+</ul>
+</p>
+
 <h2><a name="boost_1_44">Boost 1.44 release</a></h2>
 
 <p>
@@ -323,9 +335,9 @@
 
 <br>
 
-<p>Revised April 22nd 2010</p>
+<p>Revised May 2nd 2011</p>
 
-<p>&copy; Copyright 2003-2010 Joaqu&iacute;n M L&oacute;pez Mu&ntilde;oz.
+<p>&copy; Copyright 2003-2011 Joaqu&iacute;n M L&oacute;pez Mu&ntilde;oz.
 Distributed under the Boost Software
 License, Version 1.0. (See accompanying file <a href="../../../LICENSE_1_0.txt">
 LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">


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