[MOAB-dev] r4331 - MOAB/branches/Version4.0/src/parallel

tautges at mcs.anl.gov tautges at mcs.anl.gov
Mon Dec 6 15:45:44 CST 2010


Author: tautges
Date: 2010-12-06 15:45:43 -0600 (Mon, 06 Dec 2010)
New Revision: 4331

Modified:
   MOAB/branches/Version4.0/src/parallel/ParallelComm.cpp
Log:
Fixing illegal initialized value of message tag.



Modified: MOAB/branches/Version4.0/src/parallel/ParallelComm.cpp
===================================================================
--- MOAB/branches/Version4.0/src/parallel/ParallelComm.cpp	2010-12-06 21:44:49 UTC (rev 4330)
+++ MOAB/branches/Version4.0/src/parallel/ParallelComm.cpp	2010-12-06 21:45:43 UTC (rev 4331)
@@ -6247,7 +6247,7 @@
     std::vector<std::vector<SharedEntityData> > &result)
 {
   int ierr;
-  const int tag = 0x4A41534E;
+  const int tag = 0;
   const MPI_Comm comm = procConfig.proc_comm();
   const int num_proc = buffProcs.size();
   const std::vector<int> procs( buffProcs.begin(), buffProcs.end() );








































More information about the moab-dev mailing list