$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56130 - branches/release/boost/mpi/detail
From: troyer_at_[hidden]
Date: 2009-09-10 03:08:27
Author: troyer
Date: 2009-09-10 03:08:26 EDT (Thu, 10 Sep 2009)
New Revision: 56130
URL: http://svn.boost.org/trac/boost/changeset/56130
Log:
Removing assert that fails to compile on some compilers
Text files modified: 
   branches/release/boost/mpi/detail/mpi_datatype_oarchive.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/boost/mpi/detail/mpi_datatype_oarchive.hpp
==============================================================================
--- branches/release/boost/mpi/detail/mpi_datatype_oarchive.hpp	(original)
+++ branches/release/boost/mpi/detail/mpi_datatype_oarchive.hpp	2009-09-10 03:08:26 EDT (Thu, 10 Sep 2009)
@@ -61,7 +61,7 @@
     {
       // select the right sized integer for the enum
       typedef typename boost::uint_t<8*sizeof(T)>::least int_type;
-      BOOST_MPL_ASSERT((sizeof(T)==sizeof(int_type)));
+//      BOOST_MPL_ASSERT((sizeof(T)==sizeof(int_type)));
       this->save(*reinterpret_cast<int_type const*>(&t));
     }