mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-07 15:48:52 +02:00
Fixed compiler warnings about unreferenced formal parameters when
FT_CONFIG_OPTION_INCREMENTAL is not defined.
This commit is contained in:
parent
c39c3eed31
commit
d9cb9eac7c
2 changed files with 8 additions and 0 deletions
|
|
@ -595,6 +595,10 @@
|
|||
FT_Byte** pointer,
|
||||
FT_ULong length )
|
||||
{
|
||||
#ifndef FT_CONFIG_OPTION_INCREMENTAL
|
||||
length; /* Prevent compiler warning about unreferenced parameter. */
|
||||
#endif
|
||||
|
||||
#ifdef FT_CONFIG_OPTION_INCREMENTAL
|
||||
/* For incremental fonts get the character data using the */
|
||||
/* callback function. */
|
||||
|
|
|
|||
|
|
@ -2049,6 +2049,10 @@
|
|||
CFF_FontRecDict dict;
|
||||
|
||||
|
||||
#ifndef FT_CONFIG_OPTION_INCREMENTAL
|
||||
face; /* Prevent compiler warning about unreferenced parameter. */
|
||||
#endif
|
||||
|
||||
FT_ZERO( font );
|
||||
|
||||
font->stream = stream;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue