$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: nesotto_at_[hidden]
Date: 2007-12-03 10:16:17
Author: nesotto
Date: 2007-12-03 10:16:16 EST (Mon, 03 Dec 2007)
New Revision: 41644
URL: http://svn.boost.org/trac/boost/changeset/41644
Log:
Ticket #1488 
Text files modified: 
   trunk/boost/ptr_container/detail/reversible_ptr_container.hpp |    11 ++++++++++-                             
   1 files changed, 10 insertions(+), 1 deletions(-)
Modified: trunk/boost/ptr_container/detail/reversible_ptr_container.hpp
==============================================================================
--- trunk/boost/ptr_container/detail/reversible_ptr_container.hpp	(original)
+++ trunk/boost/ptr_container/detail/reversible_ptr_container.hpp	2007-12-03 10:16:16 EST (Mon, 03 Dec 2007)
@@ -38,9 +38,14 @@
 #include <typeinfo>
 #include <memory>
 
+#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)  
+#pragma warning(push)  
+#pragma warning(disable:4127)
+#endif  
+
 namespace boost
 {
-    
+
 namespace ptr_container_detail
 {
     template< class CloneAllocator >
@@ -648,4 +653,8 @@
 
 } // namespace 'boost'  
 
+#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)  
+#pragma warning(pop)  
+#endif  
+
 #endif