From 3476445420d0e6432c09710b6667205453799129 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 8 May 2019 21:14:01 -0700 Subject: [PATCH] Remove unnecessary template keyword Should fix MSVC. --- src/hb-array.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-array.hh b/src/hb-array.hh index 8902e7aaf..a320685e2 100644 --- a/src/hb-array.hh +++ b/src/hb-array.hh @@ -180,7 +180,7 @@ struct hb_array_t : hb_iter_with_fallback_t, Type&> hb_array_t copy (hb_serialize_context_t *c) const { TRACE_SERIALIZE (this); - auto* out = c->template start_embed (arrayZ); + auto* out = c->start_embed (arrayZ); if (unlikely (!c->extend_size (out, get_size ()))) return_trace (hb_array_t ()); for (unsigned i = 0; i < length; i++) out[i] = arrayZ[i]; /* TODO: add version that calls c->copy() */