What does this line of code mean:
unsigned int :32 ;
It comes from:
typedef struct avr32_pwm_channel_t {
union {
unsigned long cmr ;//0x0000
avr32_pwm_cmr_t CMR ;
};
unsigned long cdty ;//0x0004
unsigned long cprd ;//0x0008
const unsigned long ccnt ;//0x000c
unsigned long cupd ;//0x0010
unsigned int :32 ;//0x0014
unsigned int :32 ;//0x0018
unsigned int :32 ;//0x001c
} avr32_pwm_channel_t;
I try googling it but found nothing