Fix bot
C:\projects\harfbuzz\src\hb-uniscribe.cc(709): error C2666: 'hb_vector_t<OPENTYPE_FEATURE_RECORD,8>::operator +': 3 overloads have similar conversions [C:\projects\harfbuzz\build\harfbuzz.vcxproj]
This commit is contained in:
parent
b9a51f5310
commit
69d232eaea
|
@ -706,7 +706,7 @@ _hb_uniscribe_shape (hb_shape_plan_t *shape_plan,
|
||||||
for (unsigned int i = 0; i < range_records.len; i++)
|
for (unsigned int i = 0; i < range_records.len; i++)
|
||||||
{
|
{
|
||||||
range_record_t *range = &range_records[i];
|
range_record_t *range = &range_records[i];
|
||||||
range->props.potfRecords = feature_records + reinterpret_cast<uintptr_t> (range->props.potfRecords);
|
range->props.potfRecords = (OPENTYPE_FEATURE_RECORD *) feature_records + reinterpret_cast<uintptr_t> (range->props.potfRecords);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue