fcarch.c: get rid of the duplicate definition of FC_MAX

FC_MAX is also available in src/fcint.h
This commit is contained in:
Akira TAGOH 2012-05-10 16:47:09 +09:00
parent cc9d572d3e
commit 5ac12c0e94
1 changed files with 0 additions and 2 deletions

View File

@ -56,8 +56,6 @@ FC_ASSERT_STATIC (SIZEOF_VOID_P == sizeof (FcStrSet *));
FC_ASSERT_STATIC (SIZEOF_VOID_P == sizeof (FcCharLeaf **));
FC_ASSERT_STATIC (SIZEOF_VOID_P == sizeof (FcChar16 *));
#define FC_MAX(a,b) ((a) > (b) ? (a) : (b))
FC_ASSERT_STATIC (0x08 + 1*FC_MAX(4,ALIGNOF_DOUBLE) == sizeof (FcValue));
FC_ASSERT_STATIC (0x00 + 2*SIZEOF_VOID_P == sizeof (FcPatternElt));
FC_ASSERT_STATIC (0x08 + 2*SIZEOF_VOID_P == sizeof (FcPattern));