From 9784cff55688d1ee93275e39c2339d5a486ed78b Mon Sep 17 00:00:00 2001 From: Michiharu Ariza Date: Fri, 30 Nov 2018 16:07:08 -0800 Subject: [PATCH] fix another pesky gcc error --- src/hb-cff2-interp-cs.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-cff2-interp-cs.hh b/src/hb-cff2-interp-cs.hh index 3bc272025..0d8a7043a 100644 --- a/src/hb-cff2-interp-cs.hh +++ b/src/hb-cff2-interp-cs.hh @@ -136,7 +136,7 @@ struct CFF2CSInterpEnv : CSInterpEnv scalars.resize (region_count); varStore->varStore.get_scalars (get_ivs (), (int *)coords, num_coords, - &scalars[0], region_count); + &scalars[static_cast(0)], region_count); } seen_blend = true; }