[MOAB-dev] r4189 - MOAB/trunk/test/h5file

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Mon Oct 4 08:09:41 CDT 2010


Author: kraftche
Date: 2010-10-04 08:09:41 -0500 (Mon, 04 Oct 2010)
New Revision: 4189

Modified:
   MOAB/trunk/test/h5file/h5portable.cpp
Log:
fix 64-bit build with 32-bit handles

Modified: MOAB/trunk/test/h5file/h5portable.cpp
===================================================================
--- MOAB/trunk/test/h5file/h5portable.cpp	2010-10-04 12:57:22 UTC (rev 4188)
+++ MOAB/trunk/test/h5file/h5portable.cpp	2010-10-04 13:09:41 UTC (rev 4189)
@@ -34,9 +34,9 @@
 const double default_real_tag[] = { -1, -2, -3, -4, -5, -6, -7, -8 };
 const double mesh_real_tag[] = { 8, 7, 6, 5, 4, 3, 2, 1 };
 
-const size_t INTERVALS = 8;
-const size_t NUM_VERT = (INTERVALS+1)*(INTERVALS+1);
-const size_t NUM_QUAD = INTERVALS * INTERVALS;
+const EntityHandle INTERVALS = 8;
+const EntityHandle NUM_VERT = (INTERVALS+1)*(INTERVALS+1);
+const EntityHandle NUM_QUAD = INTERVALS * INTERVALS;
 const double Z = 0.0;
 const double EPS = std::numeric_limits<double>::epsilon();
 




































More information about the moab-dev mailing list