[MOAB-dev] r3897 - MOAB/trunk/src/io

jain at mcs.anl.gov jain at mcs.anl.gov
Thu May 13 12:38:16 CDT 2010


Author: jain
Date: 2010-05-13 12:38:16 -0500 (Thu, 13 May 2010)
New Revision: 3897

Modified:
   MOAB/trunk/src/io/Tqdcfr.cpp
Log:
o Fix bug reading hexes in cub file, due to a typo MBHEX instead of HEX


Modified: MOAB/trunk/src/io/Tqdcfr.cpp
===================================================================
--- MOAB/trunk/src/io/Tqdcfr.cpp	2010-05-13 14:22:20 UTC (rev 3896)
+++ MOAB/trunk/src/io/Tqdcfr.cpp	2010-05-13 17:38:16 UTC (rev 3897)
@@ -971,7 +971,7 @@
   
   if (this_type >= GROUP && this_type <= VERTEX)
     result = get_ref_entities(this_type, id_buf, id_buf_size, entities);
-  else if (this_type >= MBHEX && this_type <= NODE)
+  else if (this_type >= HEX && this_type <= NODE)
     result = get_mesh_entities(this_type, id_buf, id_buf_size, entities, excl_entities);
 
   return result;








































More information about the moab-dev mailing list