We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b68ee1 commit ae2c3a5Copy full SHA for ae2c3a5
stdlib/public/runtime/MetadataCache.h
@@ -625,7 +625,7 @@ class MetadataCacheKey {
625
assert(packs[packIdx].ShapeClass < Layout.NumShapeClasses);
626
uintptr_t count = packCounts[packs[packIdx].ShapeClass];
627
628
- if (!areMetadataPacksEqual(*adata++, *bdata++, count))
+ if (!areMetadataPacksEqual(adata[argIdx], bdata[argIdx], count))
629
return false;
630
631
++packIdx;
@@ -648,7 +648,7 @@ class MetadataCacheKey {
648
649
650
651
- if (!areWitnessTablePacksEqual(*adata++, *bdata++, count))
+ if (!areWitnessTablePacksEqual(adata[argIdx], bdata[argIdx], count))
652
653
654
0 commit comments