Commit a7e1b4a3 authored by Behdad Esfahbod's avatar Behdad Esfahbod
Browse files

Fix compiler warning re reordering of initializations

Showing with 2 additions and 2 deletions
+2 -2
......@@ -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; }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment