[HVAC] Reduce duplication of type name

This commit is contained in:
Behdad Esfahbod 2024-10-03 15:36:09 -06:00
parent 0eaf833366
commit d70ab4c979

View file

@ -56,8 +56,8 @@ struct GlyphVariationDelta
if (unlikely (points.length < deltasCount))
return;
const float *x = deltasZ;
const float *y = deltasZ + deltasCount;
const decltype(&deltasZ[0]) x = deltasZ;
const decltype(&deltasZ[0]) y = deltasZ + deltasCount;
if (scalar == 1)
for (unsigned i = 0; i < deltasCount; i++)
{