Fix compiler warning re reordering of initializations
This commit is contained in:
parent
f56cd9df10
commit
a7e1b4a3b2
|
@ -86,10 +86,10 @@ struct hb_closure_context_t :
|
|||
unsigned int nesting_level_left_ = HB_MAX_NESTING_LEVEL) :
|
||||
face (face_),
|
||||
glyphs (glyphs_),
|
||||
done_lookups (done_lookups_),
|
||||
recurse_func (nullptr),
|
||||
nesting_level_left (nesting_level_left_),
|
||||
debug_depth (0) {}
|
||||
debug_depth (0),
|
||||
done_lookups (done_lookups_) {}
|
||||
|
||||
void set_recurse_func (recurse_func_t func) { recurse_func = func; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue