$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56954 - in branches/release/boost/intrusive: . detail
From: igaztanaga_at_[hidden]
Date: 2009-10-17 11:23:39
Author: igaztanaga
Date: 2009-10-17 11:23:38 EDT (Sat, 17 Oct 2009)
New Revision: 56954
URL: http://svn.boost.org/trac/boost/changeset/56954
Log:
Fixes for 1.41
Text files modified: 
   branches/release/boost/intrusive/detail/utilities.hpp |     2 +-                                      
   branches/release/boost/intrusive/list.hpp             |     1 -                                       
   2 files changed, 1 insertions(+), 2 deletions(-)
Modified: branches/release/boost/intrusive/detail/utilities.hpp
==============================================================================
--- branches/release/boost/intrusive/detail/utilities.hpp	(original)
+++ branches/release/boost/intrusive/detail/utilities.hpp	2009-10-17 11:23:38 EDT (Sat, 17 Oct 2009)
@@ -569,7 +569,7 @@
 template<class ValueTraits>
 struct  store_cont_ptr_on_it_impl<ValueTraits, true>
 {
-   static const bool value = false;
+   static const bool value = true;
 };
 
 template <class Container>
Modified: branches/release/boost/intrusive/list.hpp
==============================================================================
--- branches/release/boost/intrusive/list.hpp	(original)
+++ branches/release/boost/intrusive/list.hpp	2009-10-17 11:23:38 EDT (Sat, 17 Oct 2009)
@@ -107,7 +107,6 @@
 
    static const bool constant_time_size = Config::constant_time_size;
    static const bool stateful_value_traits = detail::is_stateful_value_traits<real_value_traits>::value;
-   BOOST_STATIC_ASSERT(( stateful_value_traits == false ));
 
    /// @cond