$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r58402 - in trunk: boost/unordered/detail libs/unordered/doc
From: daniel_james_at_[hidden]
Date: 2009-12-15 17:42:05
Author: danieljames
Date: 2009-12-15 17:42:04 EST (Tue, 15 Dec 2009)
New Revision: 58402
URL: http://svn.boost.org/trac/boost/changeset/58402
Log:
Add missing std:: qualifier to ptrdiff_t. Refs #3773.
Text files modified: 
   trunk/boost/unordered/detail/buckets.hpp |     2 +-                                      
   trunk/libs/unordered/doc/changes.qbk     |     2 ++                                      
   2 files changed, 3 insertions(+), 1 deletions(-)
Modified: trunk/boost/unordered/detail/buckets.hpp
==============================================================================
--- trunk/boost/unordered/detail/buckets.hpp	(original)
+++ trunk/boost/unordered/detail/buckets.hpp	2009-12-15 17:42:04 EST (Tue, 15 Dec 2009)
@@ -148,7 +148,7 @@
 
         // Set up the sentinel (node_ptr cast)
         bucket_ptr sentinel = constructor.get() +
-            static_cast<ptrdiff_t>(this->bucket_count_);
+            static_cast<std::ptrdiff_t>(this->bucket_count_);
         sentinel->next_ = sentinel;
 
         // Only release the buckets once everything is successfully
Modified: trunk/libs/unordered/doc/changes.qbk
==============================================================================
--- trunk/libs/unordered/doc/changes.qbk	(original)
+++ trunk/libs/unordered/doc/changes.qbk	2009-12-15 17:42:04 EST (Tue, 15 Dec 2009)
@@ -107,5 +107,7 @@
 
 * Support instantiating the containers with incomplete value types.
 * Reduced the number of warnings (mostly in tests).
+* [@http://svn.boost.org/trac/boost/ticket/3773 Ticket 3773]:
+  Add missing `std` qualifier to `ptrdiff_t`.
 
 [endsect]