[MOAB-dev] r4087 - MOAB/trunk/test/h5file
kraftche at cae.wisc.edu
kraftche at cae.wisc.edu
Fri Aug 13 09:56:18 CDT 2010
Author: kraftche
Date: 2010-08-13 09:56:18 -0500 (Fri, 13 Aug 2010)
New Revision: 4087
Modified:
MOAB/trunk/test/h5file/h5sets_test.cpp
Log:
fix 32-bit build issue for test
Modified: MOAB/trunk/test/h5file/h5sets_test.cpp
===================================================================
--- MOAB/trunk/test/h5file/h5sets_test.cpp 2010-08-12 18:10:59 UTC (rev 4086)
+++ MOAB/trunk/test/h5file/h5sets_test.cpp 2010-08-13 14:56:18 UTC (rev 4087)
@@ -344,11 +344,11 @@
Core moab;
Interface& mb = moab;
- const size_t num_vtx = 171;
- const size_t num_pri = 12;
- const size_t num_pyr = 8;
- const size_t num_hex = 100;
- const size_t num_set = 25;
+ const EntityHandle num_vtx = 171;
+ const EntityHandle num_pri = 12;
+ const EntityHandle num_pyr = 8;
+ const EntityHandle num_hex = 100;
+ const EntityHandle num_set = 25;
mb.load_file( STRINGIFY(SRCDIR) "/rocket_ents_in_assm.h5m" );
More information about the moab-dev
mailing list