Fix more warnings
This commit is contained in:
parent
42ae468a8a
commit
b2ab15a78c
|
@ -599,9 +599,9 @@ struct CFF1StringIndex : CFF1Index
|
||||||
}
|
}
|
||||||
|
|
||||||
/* in parallel to above */
|
/* in parallel to above */
|
||||||
unsigned int calculate_serialized_size (unsigned int &offSize /*OUT*/, const remap_t &sidmap) const
|
unsigned int calculate_serialized_size (unsigned int &offSize_ /*OUT*/, const remap_t &sidmap) const
|
||||||
{
|
{
|
||||||
offSize = 0;
|
offSize_ = 0;
|
||||||
if ((count == 0) || (sidmap.get_count () == 0))
|
if ((count == 0) || (sidmap.get_count () == 0))
|
||||||
return count.static_size;
|
return count.static_size;
|
||||||
|
|
||||||
|
@ -610,8 +610,8 @@ struct CFF1StringIndex : CFF1Index
|
||||||
if (sidmap[i] != CFF_UNDEF_CODE)
|
if (sidmap[i] != CFF_UNDEF_CODE)
|
||||||
dataSize += length_at (i);
|
dataSize += length_at (i);
|
||||||
|
|
||||||
offSize = calcOffSize(dataSize);
|
offSize_ = calcOffSize(dataSize);
|
||||||
return CFF1Index::calculate_serialized_size (offSize, sidmap.get_count (), dataSize);
|
return CFF1Index::calculate_serialized_size (offSize_, sidmap.get_count (), dataSize);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -396,8 +396,8 @@ struct cff1_cs_opset_subr_subset_t : cff1_cs_opset_t<cff1_cs_opset_subr_subset_t
|
||||||
|
|
||||||
struct cff1_subr_subsetter_t : subr_subsetter_t<cff1_subr_subsetter_t, CFF1Subrs, const OT::cff1::accelerator_subset_t, cff1_cs_interp_env_t, cff1_cs_opset_subr_subset_t, OpCode_endchar>
|
struct cff1_subr_subsetter_t : subr_subsetter_t<cff1_subr_subsetter_t, CFF1Subrs, const OT::cff1::accelerator_subset_t, cff1_cs_interp_env_t, cff1_cs_opset_subr_subset_t, OpCode_endchar>
|
||||||
{
|
{
|
||||||
cff1_subr_subsetter_t (const OT::cff1::accelerator_subset_t &acc, const hb_subset_plan_t *plan)
|
cff1_subr_subsetter_t (const OT::cff1::accelerator_subset_t &acc_, const hb_subset_plan_t *plan_)
|
||||||
: subr_subsetter_t (acc, plan) {}
|
: subr_subsetter_t (acc_, plan_) {}
|
||||||
|
|
||||||
static void finalize_parsed_str (cff1_cs_interp_env_t &env, subr_subset_param_t& param, parsed_cs_str_t &charstring)
|
static void finalize_parsed_str (cff1_cs_interp_env_t &env, subr_subset_param_t& param, parsed_cs_str_t &charstring)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue