replace 32bit enumarator by cpp macro, conditionally on 16bit system.

int-not32-changes-2017
suzuki toshiya 7 years ago
parent 7576da1c3e
commit 79b806fef8
  1. 5
      src/cff/cf2blues.h

@ -100,11 +100,16 @@ FT_BEGIN_HEADER
* in `CF2_Blues', assuming 1000 units per em here.
*
*/
#if UINT_MAX > 0xFFFFUL
enum
{
CF2_ICF_Top = cf2_intToFixed( 880 ),
CF2_ICF_Bottom = cf2_intToFixed( -120 )
};
#else
#define CF2_ICF_Top (cf2_intToFixed( 880 ))
#define CF2_ICF_Bottom (cf2_intToFixed( -120 ))
#endif
/*

Loading…
Cancel
Save