[coretext/uniscribe/directwrite] Remove extra semicolons

Fixes https://github.com/harfbuzz/harfbuzz/pull/1783
pull/1784/head
Behdad Esfahbod 6 years ago
parent f0b0fd4e78
commit 10bac21bb5
  1. 2
      src/hb-coretext.cc
  2. 2
      src/hb-directwrite.cc
  3. 2
      src/hb-uniscribe.cc

@ -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…
Cancel
Save