[coretext/uniscribe/directwrite] Remove extra semicolons
Fixes https://github.com/harfbuzz/harfbuzz/pull/1783
This commit is contained in:
parent
f0b0fd4e78
commit
10bac21bb5
|
@ -652,7 +652,7 @@ _hb_coretext_shape (hb_shape_plan_t *shape_plan,
|
|||
DEBUG_MSG (CORETEXT, nullptr, __VA_ARGS__); \
|
||||
ret = false; \
|
||||
goto fail; \
|
||||
} HB_STMT_END;
|
||||
} HB_STMT_END
|
||||
|
||||
bool ret = true;
|
||||
CFStringRef string_ref = nullptr;
|
||||
|
|
|
@ -176,7 +176,7 @@ _hb_directwrite_shaper_face_data_create (hb_face_t *face)
|
|||
HB_STMT_START { \
|
||||
DEBUG_MSG (DIRECTWRITE, nullptr, __VA_ARGS__); \
|
||||
return nullptr; \
|
||||
} HB_STMT_END;
|
||||
} HB_STMT_END
|
||||
|
||||
if (FAILED (hr))
|
||||
FAIL ("Failed to load font file from data!");
|
||||
|
|
|
@ -724,7 +724,7 @@ _hb_uniscribe_shape (hb_shape_plan_t *shape_plan,
|
|||
HB_STMT_START { \
|
||||
DEBUG_MSG (UNISCRIBE, nullptr, __VA_ARGS__); \
|
||||
return false; \
|
||||
} HB_STMT_END;
|
||||
} HB_STMT_END
|
||||
|
||||
HRESULT hr;
|
||||
|
||||
|
|
Loading…
Reference in New Issue