From 45e55f70801e2ccd28e1ee30bdf5341b1ac6efe5 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 3 Oct 2018 18:07:49 +0200 Subject: [PATCH] [indic] Fix clang everything --- src/hb-ot-shape-complex-indic.cc | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index d169b2b3f..dfb3d54d5 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -412,9 +412,15 @@ preprocess_text_indic (const hb_ot_shape_plan_t *plan, bool matched = false; switch (buffer->cur().codepoint) { - case 0x0985u: matched = 0x09BE == buffer->cur(1).codepoint; break; - case 0x098Bu: matched = 0x09C3 == buffer->cur(1).codepoint; break; - case 0x098Cu: matched = 0x09E2 == buffer->cur(1).codepoint; break; + case 0x0985u: + matched = 0x09BE == buffer->cur(1).codepoint; + break; + case 0x098Bu: + matched = 0x09C3 == buffer->cur(1).codepoint; + break; + case 0x098Cu: + matched = 0x09E2 == buffer->cur(1).codepoint; + break; } buffer->next_glyph (); if (matched) { buffer->output_glyph (0x25CCu); buffer->next_glyph (); } @@ -475,7 +481,7 @@ preprocess_text_indic (const hb_ot_shape_plan_t *plan, } break; case 0x0AC5u: - matched = 0x0ABE == buffer->cur(1).codepoint; break; + matched = 0x0ABE == buffer->cur(1).codepoint; break; } buffer->next_glyph ();