[MOAB-dev] r1699 - MOAB/trunk
kraftche at mcs.anl.gov
kraftche at mcs.anl.gov
Tue Mar 25 15:38:32 CDT 2008
Author: kraftche
Date: 2008-03-25 15:38:32 -0500 (Tue, 25 Mar 2008)
New Revision: 1699
Modified:
MOAB/trunk/TagTest.cpp
Log:
fix build failure w/ 32-bit handles
Modified: MOAB/trunk/TagTest.cpp
===================================================================
--- MOAB/trunk/TagTest.cpp 2008-03-25 19:43:32 UTC (rev 1698)
+++ MOAB/trunk/TagTest.cpp 2008-03-25 20:38:32 UTC (rev 1699)
@@ -1656,7 +1656,7 @@
rval = moab.get_entities_by_type_and_tag( 0, MBVERTEX, &tag, 0, 1, ents );
CHECK_ERR(rval);
- CHECK_EQUAL( 1ul, ents.size() );
+ CHECK_EQUAL( (MBEntityHandle)1, ents.size() );
CHECK_EQUAL( vertex, ents.front() );
}
More information about the moab-dev
mailing list