[MOAB-dev] r4418 - MOAB/trunk/src

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Wed Jan 5 13:42:02 CST 2011


Author: kraftche
Date: 2011-01-05 13:42:02 -0600 (Wed, 05 Jan 2011)
New Revision: 4418

Modified:
   MOAB/trunk/src/SparseTag.cpp
   MOAB/trunk/src/VarLenDenseTag.cpp
   MOAB/trunk/src/VarLenSparseTag.cpp
Log:
fix build issues on BGP

Modified: MOAB/trunk/src/SparseTag.cpp
===================================================================
--- MOAB/trunk/src/SparseTag.cpp	2011-01-05 16:07:07 UTC (rev 4417)
+++ MOAB/trunk/src/SparseTag.cpp	2011-01-05 19:42:02 UTC (rev 4418)
@@ -383,12 +383,12 @@
 
 {
   if (!intersect)
-    get_tagged( mData, type, entities );
+    get_tagged<Container>( mData, type, entities );
   else if (MBMAXTYPE == type)
-    get_tagged( mData, intersect->begin(), intersect->end(), entities );
+    get_tagged<Container>( mData, intersect->begin(), intersect->end(), entities );
   else {
     std::pair<Range::iterator,Range::iterator> r = intersect->equal_range(type);
-    get_tagged( mData, r.first, r.second, entities );
+    get_tagged<Container>( mData, r.first, r.second, entities );
   }
 }
 

Modified: MOAB/trunk/src/VarLenDenseTag.cpp
===================================================================
--- MOAB/trunk/src/VarLenDenseTag.cpp	2011-01-05 16:07:07 UTC (rev 4417)
+++ MOAB/trunk/src/VarLenDenseTag.cpp	2011-01-05 19:42:02 UTC (rev 4418)
@@ -491,12 +491,12 @@
                       const Range* intersect )
 {
   if (!intersect)
-    return get_tagged( seqman, mySequenceArray, type, entities );
+    return get_tagged<Container>( seqman, mySequenceArray, type, entities );
   else if (MBMAXTYPE == type)
-    return get_tagged( seqman, mySequenceArray, intersect->begin(), intersect->end(), entities );
+    return get_tagged<Container>( seqman, mySequenceArray, intersect->begin(), intersect->end(), entities );
   else {
     std::pair<Range::iterator,Range::iterator> r = intersect->equal_range(type);
-    return get_tagged( seqman, mySequenceArray, r.first, r.second, entities );
+    return get_tagged<Container>( seqman, mySequenceArray, r.first, r.second, entities );
   }
 }
 

Modified: MOAB/trunk/src/VarLenSparseTag.cpp
===================================================================
--- MOAB/trunk/src/VarLenSparseTag.cpp	2011-01-05 16:07:07 UTC (rev 4417)
+++ MOAB/trunk/src/VarLenSparseTag.cpp	2011-01-05 19:42:02 UTC (rev 4418)
@@ -317,12 +317,12 @@
 
 {
   if (!intersect)
-    get_tagged( mData, type, entities );


More information about the moab-dev mailing list