]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/mpi/collectives/gather.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / mpi / collectives / gather.hpp
index 386bfdd1a107fd94047d0c3b0bcd057bb0e6be3e..34f37997ba6a77fca9407ea09056122b1d3bb3f0 100644 (file)
@@ -69,8 +69,8 @@ gather_impl(const communicator& comm, const T* in_values, int n, T* out_values,
   std::vector<int> oasizes(is_root ? nproc : 0);
   int oasize = oa.size();
   BOOST_MPI_CHECK_RESULT(MPI_Gather,
-                         (&oasize, 1, MPI_INTEGER,
-                          c_data(oasizes), 1, MPI_INTEGER
+                         (&oasize, 1, MPI_INT,
+                          c_data(oasizes), 1, MPI_INT, 
                           root, MPI_Comm(comm)));
   // Gather the archives, which can be of different sizes, so
   // we need to use gatherv.