mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-15 01:18:13 +00:00
[gvar] Remove unnecessary initialization
This commit is contained in:
parent
ca44c38c52
commit
a520177e52
1 changed files with 4 additions and 4 deletions
|
@ -53,10 +53,10 @@ struct contour_point_t
|
|||
void translate (const contour_point_t &p) { x += p.x; y += p.y; }
|
||||
|
||||
|
||||
float x = 0.f;
|
||||
float y = 0.f;
|
||||
uint8_t flag = 0;
|
||||
bool is_end_point = false;
|
||||
float x;
|
||||
float y;
|
||||
uint8_t flag;
|
||||
bool is_end_point;
|
||||
};
|
||||
|
||||
struct contour_point_vector_t : hb_vector_t<contour_point_t>
|
||||
|
|
Loading…
Add table
Reference in a new issue