[buffer] Make hb_buffer_append() take a const argument

This commit is contained in:
Behdad Esfahbod 2022-01-28 12:38:32 -07:00
parent 24650624c8
commit 7c704d8982
2 changed files with 2 additions and 2 deletions

View File

@ -1790,7 +1790,7 @@ hb_buffer_add_codepoints (hb_buffer_t *buffer,
**/
HB_EXTERN void
hb_buffer_append (hb_buffer_t *buffer,
hb_buffer_t *source,
const hb_buffer_t *source,
unsigned int start,
unsigned int end)
{

View File

@ -522,7 +522,7 @@ hb_buffer_add_codepoints (hb_buffer_t *buffer,
HB_EXTERN void
hb_buffer_append (hb_buffer_t *buffer,
hb_buffer_t *source,
const hb_buffer_t *source,
unsigned int start,
unsigned int end);