|
Boost-Commit : |
From: joaquin_at_[hidden]
Date: 2008-09-01 11:27:56
Author: joaquin
Date: 2008-09-01 11:27:55 EDT (Mon, 01 Sep 2008)
New Revision: 48513
URL: http://svn.boost.org/trac/boost/changeset/48513
Log:
merged rev. 48444 from trunk
Text files modified:
branches/release/boost/multi_index/detail/uintptr_type.hpp | 16 ++++++++--------
branches/release/libs/multi_index/doc/release_notes.html | 11 ++++++++++-
2 files changed, 18 insertions(+), 9 deletions(-)
Modified: branches/release/boost/multi_index/detail/uintptr_type.hpp
==============================================================================
--- branches/release/boost/multi_index/detail/uintptr_type.hpp (original)
+++ branches/release/boost/multi_index/detail/uintptr_type.hpp 2008-09-01 11:27:55 EDT (Mon, 01 Sep 2008)
@@ -33,21 +33,21 @@
*/
template<int N>struct uintptr_candidates;
-template<>struct uintptr_candidates<-1>{typedef unsigned int type;};
-template<>struct uintptr_candidates<0> {typedef unsigned int type;};
-template<>struct uintptr_candidates<1> {typedef unsigned short type;};
-template<>struct uintptr_candidates<2> {typedef unsigned long type;};
+template<>struct uintptr_candidates<-1>{typedef unsigned int type;};
+template<>struct uintptr_candidates<0> {typedef unsigned int type;};
+template<>struct uintptr_candidates<1> {typedef unsigned short type;};
+template<>struct uintptr_candidates<2> {typedef unsigned long type;};
#if defined(BOOST_HAS_LONG_LONG)
-template<>struct uintptr_candidates<3> {typedef unsigned long long type;};
+template<>struct uintptr_candidates<3> {typedef boost::ulong_long_type type;};
#else
-template<>struct uintptr_candidates<3> {typedef unsigned int type;};
+template<>struct uintptr_candidates<3> {typedef unsigned int type;};
#endif
#if defined(BOOST_HAS_MS_INT64)
-template<>struct uintptr_candidates<4> {typedef unsigned __int64 type;};
+template<>struct uintptr_candidates<4> {typedef unsigned __int64 type;};
#else
-template<>struct uintptr_candidates<4> {typedef unsigned int type;};
+template<>struct uintptr_candidates<4> {typedef unsigned int type;};
#endif
struct uintptr_aux
Modified: branches/release/libs/multi_index/doc/release_notes.html
==============================================================================
--- branches/release/libs/multi_index/doc/release_notes.html (original)
+++ branches/release/libs/multi_index/doc/release_notes.html 2008-09-01 11:27:55 EDT (Mon, 01 Sep 2008)
@@ -31,6 +31,7 @@
<h2>Contents</h2>
<ul>
+ <li>Boost 1.37 release</li>
<li>Boost 1.36 release</li>
<li>Boost 1.35 release</li>
<li>Boost 1.34 release</li>
@@ -38,6 +39,14 @@
<li>Boost 1.33 release</li>
</ul>
+<h2><a name="boost_1_37">Boost 1.37 release</a></h2>
+
+<p>
+<ul>
+ <li>Maintenance fixes.</li>
+</ul>
+</p>
+
<h2><a name="boost_1_36">Boost 1.36 release</a></h2>
<p>
@@ -223,7 +232,7 @@
<br>
-<p>Revised June 25th 2008</p>
+<p>Revised August 29th 2008</p>
<p>© Copyright 2003-2008 Joaquín M López Muñoz.
Distributed under the Boost Software
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