forked from minhngoc25a/freetype2
Fixed compiler warnings about unreferenced formal parameters when
FT_CONFIG_OPTION_INCREMENTAL is not defined.
This commit is contained in:
parent
c39c3eed31
commit
d9cb9eac7c
|
@ -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…
Reference in New Issue