Move FcAlign to fcint.h
This commit is contained in:
parent
36ae1d9563
commit
8009229bc5
|
@ -351,6 +351,14 @@ struct _FcCache {
|
|||
|
||||
#define FC_SERIALIZE_HASH_SIZE 8191
|
||||
|
||||
typedef union _FcAlign {
|
||||
double d;
|
||||
int i;
|
||||
intptr_t ip;
|
||||
FcBool b;
|
||||
void *p;
|
||||
} FcAlign;
|
||||
|
||||
typedef struct _FcSerializeBucket {
|
||||
struct _FcSerializeBucket *next;
|
||||
const void *object;
|
||||
|
|
|
@ -22,14 +22,6 @@
|
|||
|
||||
#include "fcint.h"
|
||||
|
||||
typedef union _FcAlign {
|
||||
double d;
|
||||
int i;
|
||||
intptr_t ip;
|
||||
FcBool b;
|
||||
void *p;
|
||||
} FcAlign;
|
||||
|
||||
intptr_t
|
||||
FcAlignSize (intptr_t size)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue