[MOAB-dev] r2058 - MOAB/trunk

kraftche at mcs.anl.gov kraftche at mcs.anl.gov
Tue Sep 9 20:13:27 CDT 2008


Author: kraftche
Date: 2008-09-09 20:13:26 -0500 (Tue, 09 Sep 2008)
New Revision: 2058

Modified:
   MOAB/trunk/TagServer.cpp
Log:
fix bug in checkin from yesterday that was causing tag_test to fail: missing 'break' in 'switch' statement

Modified: MOAB/trunk/TagServer.cpp
===================================================================
--- MOAB/trunk/TagServer.cpp	2008-09-08 16:06:16 UTC (rev 2057)
+++ MOAB/trunk/TagServer.cpp	2008-09-10 01:13:26 UTC (rev 2058)
@@ -330,7 +330,8 @@
       else
         rval = sequenceManager->set_tag_data( tag_id, entity_handles, 
                                             data, tag_info->default_value() );
-  
+      break;
+    
     case MB_TAG_SPARSE:
       rval = sequenceManager->check_valid_entities( entity_handles );
       if (MB_SUCCESS == rval)




More information about the moab-dev mailing list