diff --git a/src/hb-ot-layout.cc b/src/hb-ot-layout.cc index 7918f86dd..f25f0f9e2 100644 --- a/src/hb-ot-layout.cc +++ b/src/hb-ot-layout.cc @@ -1881,7 +1881,7 @@ void hb_ot_map_t::substitute (const hb_ot_shape_plan_t *plan, hb_font_t *font, h GSUBProxy proxy (font->face); if (!buffer->message (font, "start table GSUB")) return; apply (proxy, plan, font, buffer); - (void)buffer->message (font, "end table GSUB"); + (void) buffer->message (font, "end table GSUB"); } void hb_ot_map_t::position (const hb_ot_shape_plan_t *plan, hb_font_t *font, hb_buffer_t *buffer) const @@ -1889,7 +1889,7 @@ void hb_ot_map_t::position (const hb_ot_shape_plan_t *plan, hb_font_t *font, hb_ GPOSProxy proxy (font->face); if (!buffer->message (font, "start table GPOS")) return; apply (proxy, plan, font, buffer); - (void)buffer->message (font, "end table GPOS"); + (void) buffer->message (font, "end table GPOS"); } void diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index b9e013903..dde613817 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -1013,7 +1013,7 @@ initial_reordering_indic (const hb_ot_shape_plan_t *plan, foreach_syllable (buffer, start, end) initial_reordering_syllable_indic (plan, font->face, buffer, start, end); - (void)buffer->message (font, "end reordering indic initial"); + (void) buffer->message (font, "end reordering indic initial"); } static void diff --git a/src/hb-ot-shape-complex-khmer.cc b/src/hb-ot-shape-complex-khmer.cc index 133e05e96..d6fcd7c81 100644 --- a/src/hb-ot-shape-complex-khmer.cc +++ b/src/hb-ot-shape-complex-khmer.cc @@ -394,7 +394,7 @@ reorder_khmer (const hb_ot_shape_plan_t *plan, foreach_syllable (buffer, start, end) reorder_syllable_khmer (plan, font->face, buffer, start, end); - (void)buffer->message (font, "end reordering khmer"); + (void) buffer->message (font, "end reordering khmer"); } HB_BUFFER_DEALLOCATE_VAR (buffer, khmer_category); } diff --git a/src/hb-ot-shape-complex-myanmar.cc b/src/hb-ot-shape-complex-myanmar.cc index 08050380a..fe096ef28 100644 --- a/src/hb-ot-shape-complex-myanmar.cc +++ b/src/hb-ot-shape-complex-myanmar.cc @@ -332,7 +332,7 @@ reorder_myanmar (const hb_ot_shape_plan_t *plan, foreach_syllable (buffer, start, end) reorder_syllable_myanmar (plan, font->face, buffer, start, end); - (void)buffer->message (font, "end reordering myanmar"); + (void) buffer->message (font, "end reordering myanmar"); } HB_BUFFER_DEALLOCATE_VAR (buffer, myanmar_category); diff --git a/src/hb-ot-shape-complex-use.cc b/src/hb-ot-shape-complex-use.cc index 6ed16cb34..8ac569d8b 100644 --- a/src/hb-ot-shape-complex-use.cc +++ b/src/hb-ot-shape-complex-use.cc @@ -523,7 +523,7 @@ reorder_use (const hb_ot_shape_plan_t *plan, foreach_syllable (buffer, start, end) reorder_syllable_use (buffer, start, end); - (void)buffer->message (font, "end reordering USE"); + (void) buffer->message (font, "end reordering USE"); } HB_BUFFER_DEALLOCATE_VAR (buffer, use_category);