[coretext/uniscribe/directwrite] Remove extra semicolons

Fixes https://github.com/harfbuzz/harfbuzz/pull/1783
This commit is contained in:
Behdad Esfahbod 2019-06-18 15:15:06 -07:00
parent f0b0fd4e78
commit 10bac21bb5
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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!");

View File

@ -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;