Minor inline a function

This commit is contained in:
Behdad Esfahbod 2023-06-29 15:29:15 -06:00
parent a520177e52
commit fc38c01ab0

View file

@ -50,6 +50,7 @@ struct contour_point_t
y = x * matrix[1] + y * matrix[3];
x = x_;
}
HB_ALWAYS_INLINE
void translate (const contour_point_t &p) { x += p.x; y += p.y; }