Ticket #3565: boost-mpl-compilation-fix.patch
File boost-mpl-compilation-fix.patch, 956 bytes (added by , 13 years ago) |
---|
-
boost/mpi/detail/mpi_datatype_oarchive.hpp
old new 61 61 { 62 62 // select the right sized integer for the enum 63 63 typedef typename boost::uint_t<8*sizeof(T)>::least int_type; 64 BOOST_MPL_ASSERT ((sizeof(T)==sizeof(int_type)));64 BOOST_MPL_ASSERT_RELATION( sizeof(T), ==, sizeof(int_type) ); 65 65 this->save(*reinterpret_cast<int_type const*>(&t)); 66 66 } 67 67 -
boost/graph/distributed/detail/mpi_process_group.ipp
old new 19 19 #endif 20 20 21 21 #include <cassert> 22 #include <cstdio> 22 23 #include <algorithm> 23 24 #include <boost/graph/parallel/detail/untracked_pair.hpp> 24 25 #include <numeric>