[cff] Optimize byte_str_ref_t array access
This commit is contained in:
parent
a81ec9b2b6
commit
d9de515a38
|
@ -302,7 +302,7 @@ struct byte_str_ref_t
|
||||||
set_error ();
|
set_error ();
|
||||||
return Null (unsigned char);
|
return Null (unsigned char);
|
||||||
}
|
}
|
||||||
return str[get_offset () + i];
|
return str.arrayZ[get_offset () + i];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Conversion to hb_ubytes_t */
|
/* Conversion to hb_ubytes_t */
|
||||||
|
|
Loading…
Reference in New Issue