$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: nesotto_at_[hidden]
Date: 2008-07-22 05:15:26
Author: nesotto
Date: 2008-07-22 05:15:26 EDT (Tue, 22 Jul 2008)
New Revision: 47679
URL: http://svn.boost.org/trac/boost/changeset/47679
Log:
update in response to inspection report
Text files modified: 
   trunk/boost/ptr_container/ptr_circular_buffer.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/ptr_container/ptr_circular_buffer.hpp
==============================================================================
--- trunk/boost/ptr_container/ptr_circular_buffer.hpp	(original)
+++ trunk/boost/ptr_container/ptr_circular_buffer.hpp	2008-07-22 05:15:26 EDT (Tue, 22 Jul 2008)
@@ -271,7 +271,7 @@
         void assign( capacity_type capacity, size_type n, 
                      value_type to_clone ) // basic
         {
-            this->assign( std::min(n,capacity), to_clone );
+            this->assign( (std::min)(n,capacity), to_clone );
         }
 
         template< class InputIterator >