Add ConcurrentMap_SimpleRelaxed
[junction.git] / junction / details / Linear.h
index 590d390d198cadd67fc2930151f6dfd00d2d61ca..3e11a0ea511f876580d7883a1407a61baa836391 100644 (file)
@@ -262,7 +262,6 @@ template <class Map>
 bool Linear<Map>::TableMigration::migrateRange(Table* srcTable, ureg startIdx) {
     ureg srcSizeMask = srcTable->sizeMask;
     ureg endIdx = turf::util::min(startIdx + TableMigrationUnitSize, srcSizeMask + 1);
-    sreg valuesMigrated = 0;
     // Iterate over source range.
     for (ureg srcIdx = startIdx; srcIdx < endIdx; srcIdx++) {
         Cell* srcCell = srcTable->getCells() + (srcIdx & srcSizeMask);