mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 08:42:59 +00:00
Fix compiler warnings
This commit is contained in:
parent
8280ef7d93
commit
b12612f525
1 changed files with 2 additions and 2 deletions
|
@ -629,11 +629,11 @@ struct tuple_delta_t
|
|||
deltas_x.arrayZ[i] = infer_delta ((double) orig_points.arrayZ[i].x,
|
||||
(double) orig_points.arrayZ[prev].x,
|
||||
(double) orig_points.arrayZ[next].x,
|
||||
deltas_x.arrayZ[prev], deltas_x.arrayZ[next]);
|
||||
(double) deltas_x.arrayZ[prev], (double) deltas_x.arrayZ[next]);
|
||||
deltas_y.arrayZ[i] = infer_delta ((double) orig_points.arrayZ[i].y,
|
||||
(double) orig_points.arrayZ[prev].y,
|
||||
(double) orig_points.arrayZ[next].y,
|
||||
deltas_y.arrayZ[prev], deltas_y.arrayZ[next]);
|
||||
(double) deltas_y.arrayZ[prev], (double) deltas_y.arrayZ[next]);
|
||||
inferred_idxes.add (i);
|
||||
if (--unref_count == 0) goto no_more_gaps;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue