Fixed compiler warnings about unreferenced formal parameters when

FT_CONFIG_OPTION_INCREMENTAL is not defined.
This commit is contained in:
Graham Asher 2002-08-15 12:58:21 +00:00
parent 917589d4bd
commit 824daa5881
2 changed files with 8 additions and 0 deletions

View File

@ -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. */

View File

@ -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;