[iter] Back to dagger formatting for pipelines
diff --git a/src/hb-ot-layout-gsub-table.hh b/src/hb-ot-layout-gsub-table.hh
index 4d0fbc6..57bb890 100644
--- a/src/hb-ot-layout-gsub-table.hh
+++ b/src/hb-ot-layout-gsub-table.hh
@@ -138,7 +138,8 @@
+ hb_zip (this+coverage, substitute)
| hb_filter (*c->glyphs, hb_first)
| hb_map (hb_second)
- | hb_sink (*c->output);
+ | hb_sink (*c->output)
+ ;
}
void collect_glyphs (hb_collect_glyphs_context_t *c) const
@@ -146,7 +147,8 @@
if (unlikely (!(this+coverage).add_coverage (c->input))) return;
+ hb_zip (this+coverage, substitute)
| hb_map (hb_second)
- | hb_sink (*c->output);
+ | hb_sink (*c->output)
+ ;
}
const Coverage &get_coverage () const { return this+coverage; }
@@ -1021,7 +1023,8 @@
+ hb_zip (this+coverage, substitute)
| hb_filter (*c->glyphs, hb_first)
| hb_map (hb_second)
- | hb_sink (*c->output);
+ | hb_sink (*c->output)
+ ;
}
void collect_glyphs (hb_collect_glyphs_context_t *c) const