Closed huiman closed 1 year ago
when formatting this static declaration from
static int is_init = 0;
, the output separates the line to be
static int is_init; is_init = 0;
which makes is_init value not static.
@cacharle does this fix merged to master?
@huiman done now
when formatting this static declaration from
static int is_init = 0;
, the output separates the line to be
static int is_init; is_init = 0;
which makes is_init value not static.