GDateTime: pack the struct better

Makes a difference in 32bit.
This commit is contained in:
Matthias Clasen 2012-08-17 00:27:10 -04:00
parent 86329ba44f
commit b0d8498ee3

View File

@ -115,9 +115,6 @@
struct _GDateTime
{
/* 1 is 0001-01-01 in Proleptic Gregorian */
gint32 days;
/* Microsecond timekeeping within Day */
guint64 usec;
@ -125,6 +122,9 @@ struct _GDateTime
GTimeZone *tz;
gint interval;
/* 1 is 0001-01-01 in Proleptic Gregorian */
gint32 days;
volatile gint ref_count;
};