mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-13 08:42:59 +00:00
[normalize] Cosmetic
I didn't know this syntax is allowed in old C++.
This commit is contained in:
parent
b172f88c7d
commit
7ec4a556d9
1 changed files with 1 additions and 2 deletions
|
@ -143,8 +143,7 @@ decompose (const hb_ot_shape_normalize_context_t *c, bool shortest, hb_codepoint
|
|||
return 1;
|
||||
}
|
||||
|
||||
unsigned int ret;
|
||||
if ((ret = decompose (c, shortest, a))) {
|
||||
if (unsigned ret = decompose (c, shortest, a)) {
|
||||
if (b) {
|
||||
output_char (buffer, b, b_glyph);
|
||||
return ret + 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue