mirror of
https://github.com/boostorg/multi_index.git
synced 2025-05-09 23:14:04 +00:00
fixed problem reported at http://lists.boost.org/boost-users/2011/05/68022.php
[SVN r71671]
This commit is contained in:
parent
f0c0ae11a8
commit
1186efb3f0
@ -31,6 +31,7 @@ Acknowledgements
|
||||
<h2>Contents</h2>
|
||||
|
||||
<ul>
|
||||
<li><a href="#boost_1_47">Boost 1.47 release</a></li>
|
||||
<li><a href="#boost_1_44">Boost 1.44 release</a></li>
|
||||
<li><a href="#boost_1_43">Boost 1.43 release</a></li>
|
||||
<li><a href="#boost_1_42">Boost 1.42 release</a></li>
|
||||
@ -44,6 +45,17 @@ Acknowledgements
|
||||
<li><a href="#boost_1_33">Boost 1.33 release</a></li>
|
||||
</ul>
|
||||
|
||||
<h2><a name="boost_1_47">Boost 1.47 release</a></h2>
|
||||
|
||||
<p>
|
||||
<ul>
|
||||
<li>Fixed an ADL problem in
|
||||
<a href="reference/key_extraction.html#composite_key_compare"><code>composite_key_compare</code></a>
|
||||
related with <a href="../../../doc/html/ref.html">Boost.Ref</a>.
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<h2><a name="boost_1_44">Boost 1.44 release</a></h2>
|
||||
|
||||
<p>
|
||||
@ -323,9 +335,9 @@ Acknowledgements
|
||||
|
||||
<br>
|
||||
|
||||
<p>Revised April 22nd 2010</p>
|
||||
<p>Revised May 2nd 2011</p>
|
||||
|
||||
<p>© Copyright 2003-2010 Joaquín M López Muñoz.
|
||||
<p>© Copyright 2003-2011 Joaquín M López Muñ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">
|
||||
|
@ -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 @@ public:
|
||||
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 @@ public:
|
||||
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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user