[MOAB-dev] r1965 - MOAB/trunk/parallel

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Mon Jun 30 12:53:54 CDT 2008


Author: kraftche
Date: 2008-06-30 12:53:54 -0500 (Mon, 30 Jun 2008)
New Revision: 1965

Modified:
   MOAB/trunk/parallel/WriteHDF5Parallel.cpp
Log:
fix warning

Modified: MOAB/trunk/parallel/WriteHDF5Parallel.cpp
===================================================================
--- MOAB/trunk/parallel/WriteHDF5Parallel.cpp	2008-06-30 15:57:27 UTC (rev 1964)
+++ MOAB/trunk/parallel/WriteHDF5Parallel.cpp	2008-06-30 17:53:54 UTC (rev 1965)
@@ -323,7 +323,7 @@
     // Now remove from remoteMesh any entities that are not
     // in 'nonowned' because we aren't writing those entities
     // (on any processor.)
-  for (int i = 0; i < myPcomm->proc_config().proc_size(); ++i)
+  for (unsigned i = 0; i < myPcomm->proc_config().proc_size(); ++i)
     if (i != myPcomm->proc_config().proc_rank())
       remoteMesh[i] = nonowned.intersect( remoteMesh[i] );
   




More information about the moab-dev mailing list